| 2964 | } |
| 2965 | |
| 2966 | static long long int atoll(const char *nptr) |
| 2967 | { |
| 2968 | int saved_errno = errno; |
| 2969 | long long int x = (long long int)atoi_convert(nptr, NULL, 10, LLONG_MIN, |
| 2970 | LLONG_MAX); |
| 2971 | errno = saved_errno; |
| 2972 | return x; |
| 2973 | } |
| 2974 | |
| 2975 | /****************************************************************************/ |
| 2976 | /* STDIO */ |
no test coverage detected