blob: 84b4020bb55f579e17ff3985abfff0b361695a74 (
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 * wcsstr(const wchar_t * s1, const wchar_t * s2)
{
SIGNAL_SAFE(0);
(void)s2;
return (wchar_t*)s1;
}
/*
STDC(199409)
*/
#endif
|