#if 0 #include #include #include #include #include "stdio/_stdio.h" int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list arg) { int ret = 0; struct io_options opt = {0}; opt.fnname = "vfwprintf"; opt.stream = stream; ret = __printf(&opt, (const char*)format, arg); return ret; } /* STDC(199409) */ #endif