Mercurial > emacs
changeset 4557:bc281eb57c68
*** empty log message ***
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Wed, 11 Aug 1993 07:27:10 +0000 |
parents | db0a4691f468 |
children | bd83da57b726 |
files | src/alloca.c |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alloca.c Wed Aug 11 06:39:21 1993 +0000 +++ b/src/alloca.c Wed Aug 11 07:27:10 1993 +0000 @@ -25,7 +25,10 @@ #include "config.h" #endif -/* If compiling with GCC, this file's not needed. */ +/* If compiling with GCC 2, this file's not needed. */ +#if defined (__GNUC__) && __GNUC__ >= 2 +/* If someone has defined alloca as a macro, + there must be some other way alloca is supposed to work. */ #ifndef alloca #ifdef emacs @@ -473,3 +476,4 @@ #endif /* CRAY */ #endif /* no alloca */ +#endif /* not GCC version 2 */