| 2948 | } |
| 2949 | |
| 2950 | static int atoi(const char *nptr) |
| 2951 | { |
| 2952 | int saved_errno = errno; |
| 2953 | int x = (int)atoi_convert(nptr, NULL, 10, INT_MIN, INT_MAX); |
| 2954 | errno = saved_errno; |
| 2955 | return x; |
| 2956 | } |
| 2957 | |
| 2958 | static long int atol(const char *nptr) |
| 2959 | { |