summaryrefslogtreecommitdiff
path: root/src/wchar/wcsxfrm.c
blob: acc87510418e76266e8f317ba6ff3f98c3d3e9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <wchar.h>

size_t wcsxfrm(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)
{
	(void)s1; (void)s2; (void)n;
	return 0;
}

/*
STDC(199409)
*/