summaryrefslogtreecommitdiff
path: root/src/wchar/wprintf.c
blob: 1d35c1e01f50bd75e8016f42397c3c9e41fbfc26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <wchar.h>
#include <stdarg.h>

int wprintf(const wchar_t * restrict format, ...)
{
	va_list ap;
	va_start(ap, format);
	int ret = vwprintf(format, ap);
	va_end(ap);
	return ret;
}

/*
STDC(199409)
*/