| 2935 | } |
| 2936 | |
| 2937 | static long long int strtoll(const char * __restrict__ nptr, |
| 2938 | char ** __restrict__ endptr, int base) |
| 2939 | { |
| 2940 | return (long long int)atoi_convert(nptr, endptr, base, LLONG_MIN, |
| 2941 | LLONG_MAX); |
| 2942 | } |
| 2943 | |
| 2944 | static long int strtol(const char * __restrict__ nptr, |
| 2945 | char ** __restrict__ endptr, int base) |