comparison src/m/sparc.h @ 11134:6f4c5a47520e

Don't include alloca.h if NOT_C_CODE.
author Richard M. Stallman <rms@gnu.org>
date Mon, 27 Mar 1995 20:35:52 +0000
parents 23f72b18b420
children 1d4654a97585
comparison
equal deleted inserted replaced
11133:119880025e8f 11134:6f4c5a47520e
80 working alloca function and it should be used. 80 working alloca function and it should be used.
81 Define neither one if an assembler-language alloca 81 Define neither one if an assembler-language alloca
82 in the file alloca.s should be used. */ 82 in the file alloca.s should be used. */
83 83
84 #define HAVE_ALLOCA 84 #define HAVE_ALLOCA
85 #ifndef NOT_C_CODE
85 #if __GNUC__ < 2 /* Modern versions of GCC handle alloca directly. */ 86 #if __GNUC__ < 2 /* Modern versions of GCC handle alloca directly. */
86 #include <alloca.h> 87 #include <alloca.h>
88 #endif
87 #endif 89 #endif
88 90
89 /* Must use the system's termcap, if we use any termcap. 91 /* Must use the system's termcap, if we use any termcap.
90 It does special things. */ 92 It does special things. */
91 93