diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-13 19:46:01 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-13 19:46:01 +0000 |
commit | 4d0c11d1c253fff5de2ba9b786e8cf72a4ee61a8 (patch) | |
tree | 0cabb070a827545ecc78d31535e508ce9652e5a4 /libiberty | |
parent | 9ce62711edca9edc5f5eb6dc3500a42c6709efe6 (diff) | |
download | gcc-4d0c11d1c253fff5de2ba9b786e8cf72a4ee61a8.tar.gz |
* strerror.c: Include config.h, and redefine sys_nerr and
sys_errlist, before including ansidecl.h and libiberty.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80650 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rw-r--r-- | libiberty/strerror.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 7da2d46d608..ec90d1a395c 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2004-04-13 Ian Lance Taylor <ian@wasabisystems.com> + + * strerror.c: Include config.h, and redefine sys_nerr and + sys_errlist, before including ansidecl.h and libiberty.h. + 2004-04-13 Jeff Law <law@redhat.com> * hashtab.c (htab_remove_elt_with_hash): New function. diff --git a/libiberty/strerror.c b/libiberty/strerror.c index 83a5992b4dd..c0edb47e0c8 100644 --- a/libiberty/strerror.c +++ b/libiberty/strerror.c @@ -2,9 +2,6 @@ Written by Fred Fish. fnf@cygnus.com This file is in the public domain. --Per Bothner. */ -#include "ansidecl.h" -#include "libiberty.h" - #include "config.h" #ifdef HAVE_SYS_ERRLIST @@ -17,6 +14,9 @@ #define sys_errlist sys_errlist__ #endif +#include "ansidecl.h" +#include "libiberty.h" + #include <stdio.h> #include <errno.h> |