From: Joel Brobecker Date: Mon, 7 Jul 2008 17:09:31 +0000 (+0000) Subject: * safe-ctype.h: Add #include of ctype.h before redefining X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0f963b2442d8b307aeca3915882e7f2cacd2ea71;p=binutils-gdb.git * safe-ctype.h: Add #include of ctype.h before redefining the ctype.h macros. --- diff --git a/include/ChangeLog b/include/ChangeLog index 97aca3775f9..ded2069b821 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2008-07-07 Joel Brobecker + + * safe-ctype.h: Add #include of ctype.h before redefining + the ctype.h macros. + 2008-07-04 Joel Brobecker * 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 b3e911e07bd..0266bf1aa26 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 #undef isalpha #define isalpha(c) do_not_use_isalpha_with_safe_ctype #undef isalnum