summaryrefslogtreecommitdiff
path: root/src/wchar/wcsstr.c
blob: 22cf9fa7efeeb7a91fdfabb4bd1d117749c66d49 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <wchar.h>

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

/*
STDC(199409)
*/