blob: af6433262728d29ace055562ca9aed0b43d6e08b (
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 * wcscpy(wchar_t * restrict s1, const wchar_t * restrict s2)
{
SIGNAL_SAFE(0);
/* TODO: overlap */
return wcsncpy(s1, s2, wcslen(s2));
}
/*
STDC(199409)
*/
#endif
|