X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fscanf.c;h=a740056cc9c92c4219dadc2fccbf8665529f12ef;hb=1d92cddb1e1ed4b6cc0e55461727561e7a2522e0;hp=3b35bdce21f60b8919f7c4381cf1fc3e3c79a974;hpb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;p=musl diff --git a/src/stdio/scanf.c b/src/stdio/scanf.c index 3b35bdce..a740056c 100644 --- a/src/stdio/scanf.c +++ b/src/stdio/scanf.c @@ -1,5 +1,6 @@ #include #include +#include "libc.h" int scanf(const char *restrict fmt, ...) { @@ -10,3 +11,5 @@ int scanf(const char *restrict fmt, ...) va_end(ap); return ret; } + +weak_alias(scanf,__isoc99_scanf);