summaryrefslogtreecommitdiff
path: root/src/wchar/wcswcs.c
blob: 8f5df6f8b18e3ae5afe1df8935d2a49e628a7402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifdef __STDC_VERSION__
#include <wchar.h>
#else
#include <stddef.h>
#include "wctype/wint_t.c"
#include "wctype/wctrans_t.c"
#define wcsstr __wcsstr
#include "wcsstr.c"
#endif

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

/*
XOPEN(4,700)
*/