summaryrefslogtreecommitdiff
path: root/src/wchar/wprintf.c
blob: 84e349e2de67f509d57aef0991d72ed96f08f364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#if 0

#include <wchar.h>
#include <stdarg.h>

int wprintf(const wchar_t * restrict format, ...)
{
	SIGNAL_SAFE(0);

	va_list ap;
	va_start(ap, format);
	int ret = vwprintf(format, ap);
	va_end(ap);
	return ret;
}

/*
STDC(199409)
*/


#endif