summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/stdio/vwscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/stdio/vwscanf.c')
-rw-r--r--libc-top-half/musl/src/stdio/vwscanf.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/stdio/vwscanf.c b/libc-top-half/musl/src/stdio/vwscanf.c
new file mode 100644
index 0000000..5a3931e
--- /dev/null
+++ b/libc-top-half/musl/src/stdio/vwscanf.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+#include <stdarg.h>
+#include <wchar.h>
+
+int vwscanf(const wchar_t *restrict fmt, va_list ap)
+{
+ return vfwscanf(stdin, fmt, ap);
+}
+
+weak_alias(vwscanf,__isoc99_vwscanf);