From 14282c1a50bb8baa4213372d6b7f6e3ab1b43433 Mon Sep 17 00:00:00 2001 From: dj Date: Wed, 13 Dec 2000 17:44:01 +0000 Subject: * strtoul.c: Include safe-ctype.h, not ctype.h. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38221 138bc75d-0d04-0410-961f-82ee72b054a4 --- libiberty/ChangeLog | 4 ++++ libiberty/strtoul.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 6e2b3e98183..95b374f6548 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2000-12-13 Michael Sokolov + + * strtoul.c: Include safe-ctype.h, not ctype.h. + 2000-12-07 Zack Weinberg * safe-ctype.c: New file. diff --git a/libiberty/strtoul.c b/libiberty/strtoul.c index ce969339bc2..66420f268b2 100644 --- a/libiberty/strtoul.c +++ b/libiberty/strtoul.c @@ -37,7 +37,6 @@ #ifdef HAVE_SYS_PARAM_H #include #endif -#include #include #ifdef NEED_DECLARATION_ERRNO extern int errno; @@ -46,6 +45,7 @@ extern int errno; #include #endif #include "ansidecl.h" +#include "safe-ctype.h" #ifndef ULONG_MAX #define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF */ -- cgit v1.2.1