diff options
author | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-12 05:04:42 +0000 |
---|---|---|
committer | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-12 05:04:42 +0000 |
commit | 66806be2b0c32b412faae054523ac1a8957551a1 (patch) | |
tree | 4c60a8b0c2ac0437f7751109766d39b6dce8c572 /libiberty | |
parent | 59e339e9fbc0539c62610bbcc7393996f21b65de (diff) | |
download | gcc-66806be2b0c32b412faae054523ac1a8957551a1.tar.gz |
* strerror.c (sys_nerr): Hide the OS header version.
* strsignal.c (sys_nsig): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43242 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rw-r--r-- | libiberty/strerror.c | 2 | ||||
-rw-r--r-- | libiberty/strsignal.c | 2 |
3 files changed, 9 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 00ad6edde2f..ba899abc9cb 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2001-06-11 Loren J. Rittle <ljrittle@acm.org> + + * strerror.c (sys_nerr): Hide the OS header version. + * strsignal.c (sys_nsig): Likewise. + 2001-06-10 Richard Henderson <rth@redhat.com> * concat.c: Include string.h. Fix int vs size_t usage. diff --git a/libiberty/strerror.c b/libiberty/strerror.c index 0dd2220cd73..ba837e32332 100644 --- a/libiberty/strerror.c +++ b/libiberty/strerror.c @@ -13,6 +13,7 @@ incompatible with our later declaration, perhaps by using const attributes. So we hide the declaration in errno.h (if any) using a macro. */ +#define sys_nerr sys_nerr__ #define sys_errlist sys_errlist__ #endif @@ -20,6 +21,7 @@ #include <errno.h> #ifdef HAVE_SYS_ERRLIST +#undef sys_nerr #undef sys_errlist #endif diff --git a/libiberty/strsignal.c b/libiberty/strsignal.c index 5625323b71b..2533adce297 100644 --- a/libiberty/strsignal.c +++ b/libiberty/strsignal.c @@ -17,6 +17,7 @@ ignore any declaration in the system header files, and always declare it ourselves. With luck, this will always work. */ #define sys_siglist no_such_symbol +#define sys_nsig sys_nsig__no_such_symbol #include <stdio.h> #include <signal.h> @@ -38,6 +39,7 @@ extern PTR memset (); /* Undefine the macro we used to hide the definition of sys_siglist found in the system header files. */ #undef sys_siglist +#undef sys_nsig #ifndef NULL # ifdef __STDC__ |