diff options
Diffstat (limited to 'src/wchar/vwscanf.c')
| -rw-r--r-- | src/wchar/vwscanf.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wchar/vwscanf.c b/src/wchar/vwscanf.c new file mode 100644 index 00000000..757224a4 --- /dev/null +++ b/src/wchar/vwscanf.c @@ -0,0 +1,11 @@ +#include <wchar.h> +#include "stdarg.h" + +int vwscanf(const wchar_t * restrict format, va_list arg) +{ + return vfwscanf(stdin, format, arg); +} + +/* +STDC(199901) +*/ |
