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

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

int swprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, ...)
{
	va_list ap;
	va_start(ap, format);
	int ret = vswprintf(s, n, format, ap);
	va_end(ap);
	return ret;
}

/*
STDC(199409)
*/


#endif