| 2956 | } |
| 2957 | |
| 2958 | static long int atol(const char *nptr) |
| 2959 | { |
| 2960 | int saved_errno = errno; |
| 2961 | long int x = (long int)atoi_convert(nptr, NULL, 10, LONG_MIN, LONG_MAX); |
| 2962 | errno = saved_errno; |
| 2963 | return x; |
| 2964 | } |
| 2965 | |
| 2966 | static long long int atoll(const char *nptr) |
| 2967 | { |
no test coverage detected