blob: 5a86a7458a7dd5559726e90962ea9a687ffd1f5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#if 0
#include <wchar.h>
#include <limits.h>
#include <errno.h>
#include <wctype.h>
#define isspace iswspace
long long int wcstoll(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)
{
SIGNAL_SAFE(0);
long long int ret = 0;
long long int max = LLONG_MAX;
long long int min = LLONG_MIN;
#include "stdlib/_strtoi.h"
return ret;
}
/*
STDC(199901)
*/
#endif
|