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