diff options
author | Roland McGrath <roland@gnu.org> | 1993-08-16 19:10:25 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1993-08-16 19:10:25 +0000 |
commit | 1b98e4b0dccd1ace1919f44304f56845077757be (patch) | |
tree | 0949a2f109feb111d01bbb46a169c1cab85786e8 /src/alloca.c | |
parent | 38f29d6756c84ee9437f2519627666e3ccbd6461 (diff) | |
download | emacs-1b98e4b0dccd1ace1919f44304f56845077757be.tar.gz |
*** empty log message ***
Diffstat (limited to 'src/alloca.c')
-rw-r--r-- | src/alloca.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/alloca.c b/src/alloca.c index 367b7fe0377..cab9645b7e1 100644 --- a/src/alloca.c +++ b/src/alloca.c @@ -26,7 +26,8 @@ #endif /* If compiling with GCC 2, this file's not needed. */ -#if defined (__GNUC__) && __GNUC__ >= 2 +#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 |