diff options
Diffstat (limited to 'libc-top-half/musl/src/stdio/wscanf.c')
-rw-r--r-- | libc-top-half/musl/src/stdio/wscanf.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/stdio/wscanf.c b/libc-top-half/musl/src/stdio/wscanf.c new file mode 100644 index 0000000..4dfec25 --- /dev/null +++ b/libc-top-half/musl/src/stdio/wscanf.c @@ -0,0 +1,15 @@ +#include <stdio.h> +#include <stdarg.h> +#include <wchar.h> + +int wscanf(const wchar_t *restrict fmt, ...) +{ + int ret; + va_list ap; + va_start(ap, fmt); + ret = vwscanf(fmt, ap); + va_end(ap); + return ret; +} + +weak_alias(wscanf,__isoc99_wscanf); |