changeset 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 a6dde97d8166
children 6f05f6e83e94
files src/m/sparc.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/m/sparc.h	Fri Jun 04 05:20:16 1993 +0000
+++ b/src/m/sparc.h	Fri Jun 04 05:21:01 1993 +0000
@@ -5,7 +5,7 @@
 
 GNU Emacs is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 1, or (at your option)
+the Free Software Foundation; either version 2, or (at your option)
 any later version.
 
 GNU Emacs is distributed in the hope that it will be useful,
@@ -81,7 +81,7 @@
    in the file alloca.s should be used.  */
 
 #define HAVE_ALLOCA
-#if __GNUC__ >= 2 /* Modern versions of GCC handle alloca directly.  */
+#if __GNUC__ < 2 /* Modern versions of GCC handle alloca directly.  */
 #include <alloca.h>
 #endif