summaryrefslogtreecommitdiff
path: root/src/stdio/vscanf_s.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/vscanf_s.c')
-rw-r--r--src/stdio/vscanf_s.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/stdio/vscanf_s.c b/src/stdio/vscanf_s.c
index 02b2941a..d8bf0418 100644
--- a/src/stdio/vscanf_s.c
+++ b/src/stdio/vscanf_s.c
@@ -1,16 +1,12 @@
-#if 0
-
#include <stdio.h>
+#include "_stdio.h"
int vscanf_s(const char * restrict format, va_list arg)
{
- __C_EXT(1, 201112L);
+ SIGNAL_SAFE(0);
return vfscanf(stdin, format, arg);
}
/*
CEXT1(201112)
*/
-
-
-#endif