summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-07 03:37:47 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-07 03:37:47 +0000
commit275f12623df02daf3ee121da50997b224cfa593a (patch)
treeaef4bfbf3862be579422d81d9e6e204d0e647e8e /eval.c
parent2104a366f6c6796d08834e5946aeeee976244066 (diff)
* dln.c, eval.c, gc.c, ruby.h: shut up AIX alloca warning.
[ruby-dev:29191] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/eval.c b/eval.c
index 385684813a..48ecb28a92 100644
--- a/eval.c
+++ b/eval.c
@@ -53,9 +53,7 @@
# ifdef HAVE_ALLOCA_H
# include <alloca.h>
# else
-# ifdef _AIX
- #pragma alloca
-# else
+# ifndef _AIX
# ifndef alloca /* predefined by HP cc +Olibcalls */
void *alloca ();
# endif