diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-22 23:23:26 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-22 23:23:26 +0000 |
commit | 55a307ee9ddd7ad7ce6ce16a9151c2fba8f3128f (patch) | |
tree | 457450e4771fcb10e33bf10724263fcd7c92b790 /gcc/sdbout.c | |
parent | 8361f1af556f6bc7d66c33f091595e9e8a48f9d7 (diff) | |
download | gcc-55a307ee9ddd7ad7ce6ce16a9151c2fba8f3128f.tar.gz |
* sdbout.c (syms.h): Don't include on Interix.
* toplev.c (main): No sbrk on Interix.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25911 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 e8640ff6e0c..470cca66dd7 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -59,7 +59,7 @@ AT&T C compiler. From the example below I would conclude the following: supply usable syms.h include files. Which syms.h file to use is a target parameter so don't use the native one if we're cross compiling. */ -#if defined(USG) && !defined(MIPS) && !defined (hpux) && !defined(_WIN32) && !defined(__linux__) && !defined(CROSS_COMPILE) +#if defined(USG) && !defined(MIPS) && !defined (hpux) && !defined(_WIN32) && !defined(__linux__) && !defined(__INTERIX) && !defined(CROSS_COMPILE) #include <syms.h> /* Use T_INT if we don't have T_VOID. */ #ifndef T_VOID |