diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-09-30 21:29:14 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-09-30 21:29:14 +0000 |
commit | 1eefa5a62d781e1b58c742d4575e3b922e4d77b1 (patch) | |
tree | 341d9057fdb55fa1739518191df74fc19390340c /gcc/sdbout.c | |
parent | 770d66a00b2476b27435c61ba847e1ab53f40cc8 (diff) | |
download | gcc-1eefa5a62d781e1b58c742d4575e3b922e4d77b1.tar.gz |
Don't include syms.h for winnt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8181 138bc75d-0d04-0410-961f-82ee72b054a4
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 6a031085632..4426457797a 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 |