diff options
author | Richard Stallman <rms@gnu.org> | 1992-09-30 21:28:24 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-09-30 21:28:24 +0000 |
commit | 606f392077b7d648d9c53609422a0fa907e6e994 (patch) | |
tree | 174b6f406aadbc7705c5e4882660356447c19f07 /gcc | |
parent | 1a1ba90ec38eaad0139de70157346af9008bf11d (diff) | |
download | gcc-606f392077b7d648d9c53609422a0fa907e6e994.zip gcc-606f392077b7d648d9c53609422a0fa907e6e994.tar.gz gcc-606f392077b7d648d9c53609422a0fa907e6e994.tar.bz2 |
Don't use system syms.h on hpux.
From-SVN: r2286
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/sdbout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 3c337bd..4fa568d 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -53,7 +53,7 @@ AT&T C compiler. From the example below I would conclude the following: /* Mips systems use the SDB functions to dump out symbols, but do not supply usable syms.h include files. */ -#if defined(USG) && !defined(MIPS) +#if defined(USG) && !defined(MIPS) && !defined (hpux) #include <syms.h> /* Use T_INT if we don't have T_VOID. */ #ifndef T_VOID |