diff options
author | Nathan Sidwell <nathan@acm.org> | 1999-02-09 20:30:46 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-02-09 13:30:46 -0700 |
commit | 38d9d13089aa76506b8398c01d21ed89fb15dd7a (patch) | |
tree | b3125976e2ee0b3a233ba232e3bd32fe085df687 /gcc/protoize.c | |
parent | 2d54e33a8fe72a2e5905d3e684486b571220c2ed (diff) | |
download | gcc-38d9d13089aa76506b8398c01d21ed89fb15dd7a.zip gcc-38d9d13089aa76506b8398c01d21ed89fb15dd7a.tar.gz gcc-38d9d13089aa76506b8398c01d21ed89fb15dd7a.tar.bz2 |
system.h (_, N_): Remove dummy i18n macros.
* system.h (_, N_): Remove dummy i18n macros.
* protoize.c: Move inclusion of intl.h to after system.h.
* cexp.y: Include intl.h.
* cexp.c: Rebuilt.
From-SVN: r25117
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r-- | gcc/protoize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c index 4479587..a0a3110 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -39,8 +39,6 @@ Boston, MA 02111-1307, USA. */ #include "config.h" -#include "intl.h" - #if 0 /* Users are not supposed to use _POSIX_SOURCE to say the system is a POSIX system. That is not what _POSIX_SOURCE means! -- rms */ @@ -60,6 +58,8 @@ Boston, MA 02111-1307, USA. */ #endif #include "system.h" +#include "intl.h" + #if ! defined (_WIN32) || defined (__CYGWIN__) #if defined(POSIX) || defined(CONCURRENT) #include <dirent.h> |