* safe-ctype.h: Add #include of ctype.h before redefining
authorJoel Brobecker <brobecker@gnat.com>
Mon, 7 Jul 2008 17:09:31 +0000 (17:09 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Mon, 7 Jul 2008 17:09:31 +0000 (17:09 +0000)
        the ctype.h macros.

include/ChangeLog
include/safe-ctype.h

index 97aca3775f9933cd300fa57af6791284a0332c21..ded2069b821054a562278f8e45d1ab048ffe36b7 100644 (file)
@@ -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
index b3e911e07bd47218f067938e87b61b48cbb35c23..0266bf1aa269c38d93f461c6ba3981c11ab0ee77 100644 (file)
@@ -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