aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-06-04 05:21:01 +0000
committerRichard M. Stallman1993-06-04 05:21:01 +0000
commitd5dd7d18cf7c08744e01900a1799a42a68ef6042 (patch)
tree3d8b7f9d4a6417acfdc00d8523b73aa13aebf64f /src
parentcf418db388138ffe1a79a336c77de1ab0374e740 (diff)
downloademacs-d5dd7d18cf7c08744e01900a1799a42a68ef6042.tar.gz
emacs-d5dd7d18cf7c08744e01900a1799a42a68ef6042.zip
[__GNUC__ >= 2]: Don't include alloca.h.
Diffstat (limited to 'src')
-rw-r--r--src/m/sparc.h4
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
6GNU Emacs is free software; you can redistribute it and/or modify 6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by 7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 1, or (at your option) 8the Free Software Foundation; either version 2, or (at your option)
9any later version. 9any later version.
10 10
11GNU Emacs is distributed in the hope that it will be useful, 11GNU 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