blob: b6784dd9d322e35c892ece74226dea6423d9f1bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#if 0
#include <wchar.h>
float wcstof(const wchar_t * restrict nptr, wchar_t ** restrict endptr)
{
(void)nptr; (void)endptr;
return 0;
}
/*
STDC(199901)
*/
#endif
|