diff options
Diffstat (limited to 'src/stdio/vfscanf_s.c')
| -rw-r--r-- | src/stdio/vfscanf_s.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/stdio/vfscanf_s.c b/src/stdio/vfscanf_s.c index 7e8008a2..ca7b84d1 100644 --- a/src/stdio/vfscanf_s.c +++ b/src/stdio/vfscanf_s.c @@ -1,15 +1,13 @@ -#if 0 - #include <stdio.h> +#include "_stdio.h" int vfscanf_s(FILE * restrict stream, const char * restrict format, va_list arg) { - __C_EXT(1, 201112L); + SIGNAL_SAFE(0); + (void)stream; (void)format; (void)arg; + return 0; } /* CEXT1(201112) */ - - -#endif |
