blob: 28fce88ba5d0c64af0cc90488e98268a11f46dd6 (
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
|
#include <stddef.h>
#include <ctype.h>
#include <errno.h>
#include <inttypes.h>
#include "_safety.h"
#undef strtoumax
uintmax_t strtoumax(const char *restrict nptr, char ** restrict endptr, int base)
{
SIGNAL_SAFE(0);
uintmax_t ret = 0;
uintmax_t max = UINTMAX_MAX;
uintmax_t min = 0;
#include "stdlib/_strtoi.h"
return ret;
}
/*
STDC(199901)
*/
|