summaryrefslogtreecommitdiff
path: root/src/wchar/wcswcs.c
blob: f9dcae5f3c06aa8c2a6d365fb192d42cf294e765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#if 0

#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)
*/


#endif