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

#include <wchar.h>

errno_t wcsncpy_s(wchar_t * restrict s1, rsize_t s1max, const wchar_t * restrict s2, rsize_t n)
{
	SIGNAL_SAFE(0);

}

/*
CEXT1(201112)
*/


#endif