X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fvscanf.c;h=43892f01b304d97a55a8c4ff512140a66edb11bf;hb=3cd6f5229f079f892411e82fce3fe15c78eef4d8;hp=6901958a61d03b52e10f9436b7734712ff41c997;hpb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;p=musl diff --git a/src/stdio/vscanf.c b/src/stdio/vscanf.c index 6901958a..43892f01 100644 --- a/src/stdio/vscanf.c +++ b/src/stdio/vscanf.c @@ -1,7 +1,10 @@ #include #include +#include "libc.h" int vscanf(const char *restrict fmt, va_list ap) { return vfscanf(stdin, fmt, ap); } + +weak_alias(vscanf,__isoc99_vscanf);