Index: fusl/src/stdio/vscanf.c |
diff --git a/fusl/src/stdio/vscanf.c b/fusl/src/stdio/vscanf.c |
new file mode 100644 |
index 0000000000000000000000000000000000000000..43892f01b304d97a55a8c4ff512140a66edb11bf |
--- /dev/null |
+++ b/fusl/src/stdio/vscanf.c |
@@ -0,0 +1,10 @@ |
+#include <stdio.h> |
+#include <stdarg.h> |
+#include "libc.h" |
+ |
+int vscanf(const char *restrict fmt, va_list ap) |
+{ |
+ return vfscanf(stdin, fmt, ap); |
+} |
+ |
+weak_alias(vscanf,__isoc99_vscanf); |