From 57f2483b4b717a0526d7cd16ce57acb8802ad10f Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 29 May 1995 08:55:44 -0400 Subject: [PATCH] Don't include alloca.h for winnt. From-SVN: r9833 --- gcc/config/alpha/xm-alpha.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 #else extern void *alloca (); -- 2.30.2