Don't include alloca.h for winnt.
authorRichard Kenner <kenner@gcc.gnu.org>
Mon, 29 May 1995 12:55:44 +0000 (08:55 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Mon, 29 May 1995 12:55:44 +0000 (08:55 -0400)
From-SVN: r9833

gcc/config/alpha/xm-alpha.h

index 8a2ec953ffad5e4bbe91f8b9a7d1dd807738e678..9ac9e40fd5c38dc43f7d46ce82fed20cccca4756 100644 (file)
@@ -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 ();