blob: 833b88335696b7edfc0f7c91b8cfd8cde87533e8 [file] [log] [blame]
#include <stdio.h>
#include <wchar.h>
int vwprintf(const wchar_t* restrict fmt, va_list ap) {
return vfwprintf(stdout, fmt, ap);
}