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

#include <wchar.h>

int wcscoll(const wchar_t * s1, const wchar_t * s2)
{
	SIGNAL_SAFE(0);

	/*
	wchar_t *collated_s1 = s1;
	wchar_t *collated_s2 = s2;
	*/
	/* wcsxfrm */
	return wcscmp(s1, s2);
}

/*
STDC(199409)
*/


#endif