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

#include <wchar.h>

size_t wcsftime(wchar_t * restrict s, size_t maxsize, const wchar_t * restrict format, const struct tm * restrict timeptr)
{
	SIGNAL_SAFE(0);

	(void)s; (void)maxsize; (void)format; (void)timeptr;
	return 0;
}

/*
STDC(199409)
*/


#endif