diff options
| author | Richard M. Stallman | 1993-06-04 05:21:01 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-04 05:21:01 +0000 |
| commit | d5dd7d18cf7c08744e01900a1799a42a68ef6042 (patch) | |
| tree | 3d8b7f9d4a6417acfdc00d8523b73aa13aebf64f /src | |
| parent | cf418db388138ffe1a79a336c77de1ab0374e740 (diff) | |
| download | emacs-d5dd7d18cf7c08744e01900a1799a42a68ef6042.tar.gz emacs-d5dd7d18cf7c08744e01900a1799a42a68ef6042.zip | |
[__GNUC__ >= 2]: Don't include alloca.h.
Diffstat (limited to 'src')
| -rw-r--r-- | src/m/sparc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/m/sparc.h b/src/m/sparc.h index 392189a9f5e..dde025563b6 100644 --- a/src/m/sparc.h +++ b/src/m/sparc.h | |||
| @@ -5,7 +5,7 @@ This file is part of GNU Emacs. | |||
| 5 | 5 | ||
| 6 | GNU Emacs is free software; you can redistribute it and/or modify | 6 | GNU Emacs is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by | 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 1, or (at your option) | 8 | the Free Software Foundation; either version 2, or (at your option) |
| 9 | any later version. | 9 | any later version. |
| 10 | 10 | ||
| 11 | GNU Emacs is distributed in the hope that it will be useful, | 11 | GNU Emacs is distributed in the hope that it will be useful, |
| @@ -81,7 +81,7 @@ NOTE-END */ | |||
| 81 | in the file alloca.s should be used. */ | 81 | in the file alloca.s should be used. */ |
| 82 | 82 | ||
| 83 | #define HAVE_ALLOCA | 83 | #define HAVE_ALLOCA |
| 84 | #if __GNUC__ >= 2 /* Modern versions of GCC handle alloca directly. */ | 84 | #if __GNUC__ < 2 /* Modern versions of GCC handle alloca directly. */ |
| 85 | #include <alloca.h> | 85 | #include <alloca.h> |
| 86 | #endif | 86 | #endif |
| 87 | 87 | ||