diff options
Diffstat (limited to 'src/stdio/vscanf_s.c')
-rw-r--r-- | src/stdio/vscanf_s.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/stdio/vscanf_s.c b/src/stdio/vscanf_s.c new file mode 100644 index 00000000..85f34e07 --- /dev/null +++ b/src/stdio/vscanf_s.c @@ -0,0 +1,11 @@ +#include "stdio.h" + +int vscanf_s(const char * restrict format, va_list arg) +{ + __C_EXT(1, 201112L); + return vfscanf(stdin, format, arg); +} + +/* +CEXT1(201112) +*/ |