diff options
Diffstat (limited to 'gcc/f/proj.c')
-rw-r--r-- | gcc/f/proj.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/f/proj.c b/gcc/f/proj.c index ad32353..6af2df5 100644 --- a/gcc/f/proj.c +++ b/gcc/f/proj.c @@ -20,7 +20,6 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "proj.h" -#include <ctype.h> #include "glimits.j" #ifndef HAVE_STRTOUL @@ -33,7 +32,7 @@ strtoul (const char *nptr, char **endptr, int base) assert (base == 10); assert (endptr == NULL); - while (isdigit (*nptr)) + while (ISDIGIT (*nptr)) { number = old_number * 10 + (*(nptr++) - '0'); if ((number <= old_number) && (old_number != 0)) |