diff options
author | Michael Meissner <meissner@cygnus.com> | 1997-10-29 22:00:14 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1997-10-29 22:00:14 +0000 |
commit | 05ef204d6d34bd2e8335790b280ef391f0b63c31 (patch) | |
tree | 5ef6632bfafad08c2b215fe4cab1bb29b7c01fda /gcc/config/rs6000 | |
parent | feecabdf8371a89d421e890a294202115f164481 (diff) | |
download | gcc-05ef204d6d34bd2e8335790b280ef391f0b63c31.tar.gz |
Fix duplicate SIG_SYSLIST warnings on PowerPC Linux
From-SVN: r16230
Diffstat (limited to 'gcc/config/rs6000')
-rw-r--r-- | gcc/config/rs6000/xm-sysv4.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/rs6000/xm-sysv4.h b/gcc/config/rs6000/xm-sysv4.h index bc8f4bf299b..7184d8892db 100644 --- a/gcc/config/rs6000/xm-sysv4.h +++ b/gcc/config/rs6000/xm-sysv4.h @@ -46,7 +46,11 @@ Boston, MA 02111-1307, USA. */ #define SUCCESS_EXIT_CODE 0 #define FATAL_EXIT_CODE 33 +#ifdef __linux__ +#include "xm-linux.h" +#else #include "xm-svr4.h" +#endif /* if not compiled with GNU C, use the C alloca and use only int bitfields. */ #ifndef __GNUC__ |