comparison src/m/sparc.h @ 3471:0b6fc4c47891

[__GNUC__ >= 2]: Don't include alloca.h.
author Richard M. Stallman <rms@gnu.org>
date Fri, 04 Jun 1993 05:21:01 +0000
parents ce971b0a5918
children 87749666b68b
comparison
equal deleted inserted replaced
3470:a6dde97d8166 3471:0b6fc4c47891
3 3
4 This file is part of GNU Emacs. 4 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,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
79 working alloca function and it should be used. 79 working alloca function and it should be used.
80 Define neither one if an assembler-language alloca 80 Define neither one if an assembler-language alloca
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
88 /* Must use the system's termcap, if we use any termcap. 88 /* Must use the system's termcap, if we use any termcap.
89 It does special things. */ 89 It does special things. */