summaryrefslogtreecommitdiff
path: root/src/wchar/wcstod.c
blob: 9f5b1c52716f625a598495bf596078d13a369e79 (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>

double wcstod(const wchar_t * restrict nptr, wchar_t ** restrict endptr)
{
	SIGNAL_SAFE(0);
	/* TODO: overlap */

	(void)nptr; (void)endptr;
	return 0.0;
}

/*
STDC(199409)
*/


#endif