diff options
Diffstat (limited to 'src/stdio/scanf.c')
| -rw-r--r-- | src/stdio/scanf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stdio/scanf.c b/src/stdio/scanf.c index efec61d8..23e82417 100644 --- a/src/stdio/scanf.c +++ b/src/stdio/scanf.c @@ -1,8 +1,9 @@ +#include <stdarg.h> #include <stdio.h> -#include "stdarg.h" #include "_stdio.h" /** read formatted input **/ + int scanf(const char * restrict format, ...) { int ret = 0; @@ -25,6 +26,7 @@ reads formatted input from macro(stdin). FIXME: scanf format goes here ***/ + /* STDC(1) */ |
