diff options
author | Roland McGrath <roland@redhat.com> | 1992-01-29 23:54:37 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1992-01-29 23:54:37 +0000 |
commit | 3e08b8c56a56a0ba13cb710aa8e43367163fd123 (patch) | |
tree | afb3f8874f75c7ba019501271fc8622891a1d5a2 | |
parent | ba26d609a1ca9c291bea29a41927ab486675a20c (diff) | |
download | gunmake-3e08b8c56a56a0ba13cb710aa8e43367163fd123.tar.gz |
Formerly make.h.~41~
-rw-r--r-- | make.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 <alloca.h> -#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 |