summaryrefslogtreecommitdiff
path: root/src/wchar/wprintf_s.c
blob: b45bc0770dfcfb4b392e502b596a87444d4932d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "wchar.h"

int wprintf_s(const wchar_t * restrict format, ...)
{
	__C_EXT(1, 201112L);
	va_list ap;
	va_start(ap, format);
	int ret = vwprintf_s(format, ap);
	va_end(ap);
	return ret;
}

/*
CEXT1(201112)
*/