1 #include <stdio.h>
2 #include <wchar.h>
3 
vwprintf(const wchar_t * restrict fmt,va_list ap)4 int vwprintf(const wchar_t* restrict fmt, va_list ap) {
5     return vfwprintf(stdout, fmt, ap);
6 }
7