diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-29 12:55:44 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-29 12:55:44 +0000 |
commit | d86d910f993ae266c054c959d717697ad9353bed (patch) | |
tree | 5d02c23d5df616d42daa617c55a26dee1dac09f2 | |
parent | eb993368eecfaee2e0995dd34cf12eef41b0a289 (diff) | |
download | gcc-d86d910f993ae266c054c959d717697ad9353bed.tar.gz |
Don't include alloca.h for winnt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9833 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/config/alpha/xm-alpha.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/alpha/xm-alpha.h b/gcc/config/alpha/xm-alpha.h index 8a2ec953ffa..9ac9e40fd5c 100644 --- a/gcc/config/alpha/xm-alpha.h +++ b/gcc/config/alpha/xm-alpha.h @@ -41,7 +41,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define FATAL_EXIT_CODE 33 /* If not compiled with GNU C, use the builtin alloca. */ -#ifndef __GNUC__ +#if !defined(__GNUC__) && !defined(_WIN32) #include <alloca.h> #else extern void *alloca (); |