X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fstdio%2Fvscanf.c;h=43892f01b304d97a55a8c4ff512140a66edb11bf;hp=6901958a61d03b52e10f9436b7734712ff41c997;hb=14f0272ea1775c35801b2bc17e67ef8bb7e9742d;hpb=ced64995c26a28ae40c5ae356b6c6a87a3bdf5ce 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);