diff options
| author | Roland McGrath | 1993-08-11 07:27:10 +0000 |
|---|---|---|
| committer | Roland McGrath | 1993-08-11 07:27:10 +0000 |
| commit | 6c5c8bbecea1f59f3ac2c7859e7a680da9008d2d (patch) | |
| tree | b98f871a13c3a10dcabdf78a5aecedc90ff4254a /src | |
| parent | b0787891e72dd0bf94863e5ca196578c124739f7 (diff) | |
| download | emacs-6c5c8bbecea1f59f3ac2c7859e7a680da9008d2d.tar.gz emacs-6c5c8bbecea1f59f3ac2c7859e7a680da9008d2d.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/alloca.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/alloca.c b/src/alloca.c index 16f19a27672..367b7fe0377 100644 --- a/src/alloca.c +++ b/src/alloca.c | |||
| @@ -25,7 +25,10 @@ | |||
| 25 | #include "config.h" | 25 | #include "config.h" |
| 26 | #endif | 26 | #endif |
| 27 | 27 | ||
| 28 | /* If compiling with GCC, this file's not needed. */ | 28 | /* If compiling with GCC 2, this file's not needed. */ |
| 29 | #if defined (__GNUC__) && __GNUC__ >= 2 | ||
| 30 | /* If someone has defined alloca as a macro, | ||
| 31 | there must be some other way alloca is supposed to work. */ | ||
| 29 | #ifndef alloca | 32 | #ifndef alloca |
| 30 | 33 | ||
| 31 | #ifdef emacs | 34 | #ifdef emacs |
| @@ -473,3 +476,4 @@ i00afunc (long address) | |||
| 473 | #endif /* CRAY */ | 476 | #endif /* CRAY */ |
| 474 | 477 | ||
| 475 | #endif /* no alloca */ | 478 | #endif /* no alloca */ |
| 479 | #endif /* not GCC version 2 */ | ||