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

#include <wchar.h>

size_t wcsxfrm(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)
{
	SIGNAL_SAFE(0);
	/* TODO: overlap */

	(void)s1; (void)s2; (void)n;
	return 0;
}

/*
STDC(199409)
*/


#endif