From dc0619b0df46739db4a82ea6068ae69289f6f693 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 15 Aug 2020 19:53:55 -0400 Subject: add empty prototype function --- src/stdio/__scanf.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/stdio/__scanf.c (limited to 'src/stdio') 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 +#include +#include "_stdio.h" + +int __scanf(struct io_options *opt, const char * format, va_list arg) +{ + (void)opt; + (void)format; + (void)arg; + return 0; +} -- cgit v1.2.1