blob: 41685915bdd05e2b3bd7695928bd40fd170ec09f [file] [log] [blame]
#include <stdarg.h>
#include <stdio.h>
#include <wchar.h>
int wprintf(const wchar_t* restrict fmt, ...) {
int ret;
va_list ap;
va_start(ap, fmt);
ret = vwprintf(fmt, ap);
va_end(ap);
return ret;
}