summaryrefslogtreecommitdiff
path: root/libguile/eval.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1997-02-05 18:19:57 +0000
committerTom Tromey <tromey@redhat.com>1997-02-05 18:19:57 +0000
commit5862b540cdec063690767e5e095ba20d093f87d1 (patch)
tree2e66c19f162abf47a82128f22c13c88da595f069 /libguile/eval.c
parent052642874c8aff7b5042d26e3f996db5d9dacf99 (diff)
downloadguile-5862b540cdec063690767e5e095ba20d093f87d1.tar.gz
* eval.c: Don't define alloca in GCC case. gcc will automatically
use __builtin_alloca if appropriate.
Diffstat (limited to 'libguile/eval.c')
-rw-r--r--libguile/eval.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libguile/eval.c b/libguile/eval.c
index 1869051f0..bf7581e54 100644
--- a/libguile/eval.c
+++ b/libguile/eval.c
@@ -57,9 +57,7 @@
/* AIX requires this to be the first thing in the file. The #pragma
directive is indented so pre-ANSI compilers will ignore it, rather
than choke on it. */
-#ifdef __GNUC__
-# define alloca __builtin_alloca
-#else
+#ifndef __GNUC__
# if HAVE_ALLOCA_H
# include <alloca.h>
# else