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