From: Roland McGrath Date: Wed, 29 Jan 1992 23:54:37 +0000 (+0000) Subject: Formerly make.h.~41~ X-Git-Tag: 3.70.2~851 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e08b8c56a56a0ba13cb710aa8e43367163fd123;p=thirdparty%2Fmake.git Formerly make.h.~41~ --- diff --git a/make.h b/make.h index 1a78485d..37c64c2a 100644 --- a/make.h +++ b/make.h @@ -136,11 +136,11 @@ extern void free (); #undef alloca #define alloca(n) __builtin_alloca (n) #else /* Not GCC. */ -#ifdef sparc +#if defined (sparc) || defined (HAVE_ALLOCA_H) #include -#else /* Not sparc. */ +#else /* Not sparc or HAVE_ALLOCA_H. */ extern char *alloca (); -#endif /* sparc. */ +#endif /* sparc or HAVE_ALLOCA_H. */ #endif /* GCC. */ #ifndef iAPX286