summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2008-07-07 17:09:31 +0000
committerJoel Brobecker <brobecker@gnat.com>2008-07-07 17:09:31 +0000
commit536a31395b1d8f5befe9046f406ea095bec848f0 (patch)
tree7dd81d7f26c14e3eb96f8c6398bf91b9a7d015be
parentfb9f112dfc609515731c6667f99eadf5a2845786 (diff)
downloadbinutils-redhat-536a31395b1d8f5befe9046f406ea095bec848f0.tar.gz
* safe-ctype.h: Add #include of ctype.h before redefining
the ctype.h macros.
-rw-r--r--include/ChangeLog5
-rw-r--r--include/safe-ctype.h5
2 files changed, 9 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 97aca3775f..ded2069b82 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,8 @@
+2008-07-07 Joel Brobecker <brobecker@adacore.com>
+
+ * safe-ctype.h: Add #include of ctype.h before redefining
+ the ctype.h macros.
+
2008-07-04 Joel Brobecker <brobecker@adacore.com>
* safe-ctype.h: Remove #error when detecting that ctype.h has been
diff --git a/include/safe-ctype.h b/include/safe-ctype.h
index b3e911e07b..0266bf1aa2 100644
--- a/include/safe-ctype.h
+++ b/include/safe-ctype.h
@@ -116,7 +116,10 @@ extern const unsigned char _sch_tolower[256];
from ctype.h. Initially, the approach was to produce an error when
detecting that ctype.h has been included. But this was causing
trouble as ctype.h might get indirectly included as a result of
- including another system header (for instance gnulib's stdint.h). */
+ including another system header (for instance gnulib's stdint.h).
+ So we include ctype.h here and then immediately redefine its macros. */
+
+#include <ctype.h>
#undef isalpha
#define isalpha(c) do_not_use_isalpha_with_safe_ctype
#undef isalnum