summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-13 18:11:45 +0000
committerdj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-13 18:11:45 +0000
commita973e2b199393c97deffd9bfa5f29c9d379b8e91 (patch)
tree24cb95057aaf165b54336828ddab32f04d24fbea
parent41ca1e4b5e422f3c1e3cf39a9e242813a0b8082a (diff)
downloadgcc-a973e2b199393c97deffd9bfa5f29c9d379b8e91.tar.gz
* safe-ctype.c: #include "ansidecl.h".
* strtod.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38224 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--libiberty/ChangeLog5
-rw-r--r--libiberty/safe-ctype.c1
-rw-r--r--libiberty/strtod.c1
3 files changed, 7 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 95b374f6548..3bb0139ea54 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,5 +1,10 @@
2000-12-13 Michael Sokolov <msokolov@ivan.Harhan.ORG>
+ * safe-ctype.c: #include "ansidecl.h".
+ * strtod.c: Likewise.
+
+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>
diff --git a/libiberty/safe-ctype.c b/libiberty/safe-ctype.c
index b6722a26684..0c2be3ed795 100644
--- a/libiberty/safe-ctype.c
+++ b/libiberty/safe-ctype.c
@@ -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 */
diff --git a/libiberty/strtod.c b/libiberty/strtod.c
index b1243acb6b3..90292c224b6 100644
--- a/libiberty/strtod.c
+++ b/libiberty/strtod.c
@@ -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 ();