diff options
Diffstat (limited to 'src/stdio/sscanf.c')
-rw-r--r-- | src/stdio/sscanf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stdio/sscanf.c b/src/stdio/sscanf.c index 10a08447..e8ccaf9e 100644 --- a/src/stdio/sscanf.c +++ b/src/stdio/sscanf.c @@ -1,8 +1,9 @@ +#include <stdarg.h> #include <stdio.h> -#include "stdarg.h" #include "_stdio.h" /** read formatted input from a string **/ + int sscanf(const char * restrict s, const char * restrict format, ...) { int ret = 0; @@ -25,6 +26,7 @@ reads formatted input from the string ARGUMENT(s). The format of ARGUMENT(format) at the variadic arguments is the same as that for FUNCTION(scanf). ***/ + /* STDC(1) */ |