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

#include <wchar.h>

wchar_t * wcscat(wchar_t * restrict s1, const wchar_t * restrict s2)
{
	SIGNAL_SAFE(0);

	wcscpy(s1 + wcslen(s1), s2);
	return s1;
}

/*
STDC(199409)
*/


#endif