diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-09-30 17:29:14 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-09-30 17:29:14 -0400 |
commit | 369404d97d31cd99ba163cc2fdb2736bd901162f (patch) | |
tree | 341d9057fdb55fa1739518191df74fc19390340c /gcc/sdbout.c | |
parent | fa0fdaec2c85cb846c31c0f848ff2a1b105b4cc1 (diff) | |
download | gcc-369404d97d31cd99ba163cc2fdb2736bd901162f.zip gcc-369404d97d31cd99ba163cc2fdb2736bd901162f.tar.gz gcc-369404d97d31cd99ba163cc2fdb2736bd901162f.tar.bz2 |
Don't include syms.h for winnt.
From-SVN: r8181
Diffstat (limited to 'gcc/sdbout.c')
-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 6a03108..4426457 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) && !defined (hpux) +#if defined(USG) && !defined(MIPS) && !defined (hpux) && !defined(WINNT) #include <syms.h> /* Use T_INT if we don't have T_VOID. */ #ifndef T_VOID |