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

#include <wchar.h>

wchar_t * wcstok(wchar_t * restrict s1, const wchar_t * restrict s2, wchar_t ** restrict ptr)
{
	(void)s1; (void)s2; (void)ptr;
	return s1;
}

/*
STDC(199409)
*/


#endif