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 | 0114e17e668a921c9050d5743943c16a9cee5f37 (patch) | |
| tree | c8a5f33bee58a32b23ae57db5cb009784542a354 | |
| parent | 455d9d28a99fc63dd5f792ed08da3aa0df3a7c94 (diff) | |
| download | emacs-0114e17e668a921c9050d5743943c16a9cee5f37.tar.gz | |
*** empty log message ***
| -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 |
