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

#include <wchar.h>

wchar_t * wcsstr(const wchar_t * s1, const wchar_t * s2)
{
	(void)s2;
	return (wchar_t*)s1;
}

/*
STDC(199409)
*/


#endif