X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fvswscanf.c;h=411dd39c9a27f763932126665cf95f9edc0bf422;hb=9448b0513e2eec020fbca9c10412b83df5027a16;hp=a205200a871c1b2dc290aaaac9e01efe382aa892;hpb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;p=musl diff --git a/src/stdio/vswscanf.c b/src/stdio/vswscanf.c index a205200a..411dd39c 100644 --- a/src/stdio/vswscanf.c +++ b/src/stdio/vswscanf.c @@ -1,4 +1,6 @@ #include "stdio_impl.h" +#include "libc.h" +#include static size_t wstring_read(FILE *f, unsigned char *buf, size_t len) { @@ -33,3 +35,5 @@ int vswscanf(const wchar_t *restrict s, const wchar_t *restrict fmt, va_list ap) }; return vfwscanf(&f, fmt, ap); } + +weak_alias(vswscanf,__isoc99_vswscanf);