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

#include <wchar.h>

int swprintf_s(wchar_t * restrict s, rsize_t n, const wchar_t * restrict format,
	...)
{
	__C_EXT(1, 201112L);
	va_list ap;
	va_start(ap, format);
	int ret = vswprintf_s(s, n, format, ap);
	va_end(ap);
	return ret;
}

/*
CEXT1(201112)
*/


#endif