* safe-ctype.c: #include "ansidecl.h".
authorDJ Delorie <dj@redhat.com>
Sun, 17 Dec 2000 03:07:49 +0000 (03:07 +0000)
committerDJ Delorie <dj@redhat.com>
Sun, 17 Dec 2000 03:07:49 +0000 (03:07 +0000)
* strtod.c: Likewise.
* strtoul.c: Include safe-ctype.h, not ctype.h.

libiberty/ChangeLog
libiberty/safe-ctype.c
libiberty/strtod.c
libiberty/strtoul.c

index b9b8b09f3b11f3c968a619f43620a35340cc614c..0d2333fbe40e2e483e8e5047dbdfae43a2f516fb 100644 (file)
@@ -1,3 +1,12 @@
+2000-12-16  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
+
+       * safe-ctype.c: #include "ansidecl.h".
+       * strtod.c: Likewise.
+
+2000-12-16  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 b6722a26684b2e281415719001eabe65e0edd608..0c2be3ed7955e6ed9c508ca0f7eef0bada1caab5 100644 (file)
@@ -29,6 +29,7 @@ Boston, MA 02111-1307, USA.  */
    - Behaves properly for all values in the range of a signed or
      unsigned char.  */
 
+#include "ansidecl.h"
 #include <safe-ctype.h>
 #include <stdio.h>  /* for EOF */
 
index b1243acb6b3f0237f35ff0e779e4e7698d85757c..90292c224b6cd8085a1624a94fce70e6cccc0735 100644 (file)
@@ -22,6 +22,7 @@ the resulting executable to be covered by the GNU General Public License.
 This exception does not however invalidate any other reasons why
 the executable file might be covered by the GNU General Public License. */
 
+#include "ansidecl.h"
 #include "safe-ctype.h"
 
 extern double atof ();
index ce969339bc25bef8ad49a27f8071e5d21e3549e5..66420f268b28dae3ae84f14b5e43ef2a523f485b 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 */