summaryrefslogtreecommitdiff
path: root/src/stdio/vscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/vscanf.c')
-rw-r--r--src/stdio/vscanf.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stdio/vscanf.c b/src/stdio/vscanf.c
new file mode 100644
index 00000000..189ae04f
--- /dev/null
+++ b/src/stdio/vscanf.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+
+int vscanf(const char * restrict format, va_list arg)
+{
+ return vfscanf(stdin, format, arg);
+}
+
+/*
+STDC(199901)
+*/