13 lines
219 B
C
13 lines
219 B
C
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <wchar.h>
|
||
|
|
||
|
int __wprintf_chk(int flag, const wchar_t *restrict fmt, ...)
|
||
|
{
|
||
|
int ret;
|
||
|
va_list ap;
|
||
|
va_start(ap, fmt);
|
||
|
ret = vwprintf(fmt, ap);
|
||
|
va_end(ap);
|
||
|
return ret;
|
||
|
}
|