summaryrefslogtreecommitdiff
path: root/libiberty/strtoul.c
diff options
context:
space:
mode:
authordj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-13 17:44:01 +0000
committerdj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-13 17:44:01 +0000
commit14282c1a50bb8baa4213372d6b7f6e3ab1b43433 (patch)
tree675f1d711037c7f899ed12097d4307c843444f63 /libiberty/strtoul.c
parentc21cb186688bcd68eeb70ada34eeda12df49d6a0 (diff)
downloadgcc-14282c1a50bb8baa4213372d6b7f6e3ab1b43433.tar.gz
* 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
Diffstat (limited to 'libiberty/strtoul.c')
-rw-r--r--libiberty/strtoul.c2
1 files changed, 1 insertions, 1 deletions
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 <sys/param.h>
#endif
-#include <ctype.h>
#include <errno.h>
#ifdef NEED_DECLARATION_ERRNO
extern int errno;
@@ -46,6 +45,7 @@ extern int errno;
#include <stdlib.h>
#endif
#include "ansidecl.h"
+#include "safe-ctype.h"
#ifndef ULONG_MAX
#define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF */