* strtoul.c: Include safe-ctype.h, not ctype.h.
authorMichael Sokolov <msokolov@ivan.Harhan.ORG>
Wed, 13 Dec 2000 17:44:01 +0000 (17:44 +0000)
committerDJ Delorie <dj@gcc.gnu.org>
Wed, 13 Dec 2000 17:44:01 +0000 (12:44 -0500)
From-SVN: r38221

libiberty/ChangeLog
libiberty/strtoul.c

index 6e2b3e9..95b374f 100644 (file)
@@ -1,3 +1,7 @@
+2000-12-13  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
+
+       * strtoul.c: Include safe-ctype.h, not ctype.h.
+
 2000-12-07  Zack Weinberg  <zack@wolery.stanford.edu>
 
        * safe-ctype.c: New file.
index ce96933..66420f2 100644 (file)
@@ -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 */