소스 검색

add __isoc99_vfscanf weak alias to vfscanf

this glibc abi compatibility function was missed when the scanf
aliases were added.
Szabolcs Nagy 11 년 전
부모
커밋
5f94205369
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/stdio/vfscanf.c

+ 2 - 0
src/stdio/vfscanf.c

@@ -328,3 +328,5 @@ match_fail:
 	FUNLOCK(f);
 	return matches;
 }
+
+weak_alias(vfscanf,__isoc99_vfscanf);