summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-15 19:53:55 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-15 19:53:55 -0400
commitdc0619b0df46739db4a82ea6068ae69289f6f693 (patch)
tree99db6ef3a503dffbf34d6d406237b82c7e95c9b5
parent537fb24f7f426907582b6141901a2f0483d17e83 (diff)
add empty prototype function
-rw-r--r--src/stdio/__scanf.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/stdio/__scanf.c b/src/stdio/__scanf.c
new file mode 100644
index 00000000..b5700c8e
--- /dev/null
+++ b/src/stdio/__scanf.c
@@ -0,0 +1,11 @@
+#include <stdarg.h>
+#include <stdio.h>
+#include "_stdio.h"
+
+int __scanf(struct io_options *opt, const char * format, va_list arg)
+{
+ (void)opt;
+ (void)format;
+ (void)arg;
+ return 0;
+}