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