summaryrefslogtreecommitdiffstats
path: root/ruby.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-07 03:43:42 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-07 03:43:42 +0000
commitb6c7726af9360be623fb838279642bd9275ff142 (patch)
tree65963f9a87ff507ba517d9e39584e9c0fa0c8d95 /ruby.h
parent7df15e398c457bbab97993c2e7a290c274c541d6 (diff)
downloadruby-b6c7726af9360be623fb838279642bd9275ff142.tar.gz
ruby-b6c7726af9360be623fb838279642bd9275ff142.tar.xz
ruby-b6c7726af9360be623fb838279642bd9275ff142.zip
* dln.c, eval.c, gc.c, regex.c, ruby.h: shut up AIX alloca
warning. [ruby-dev:29191] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10694 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.h')
-rw-r--r--ruby.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ruby.h b/ruby.h
index d8048f89c..dcf7fbd82 100644
--- a/ruby.h
+++ b/ruby.h
@@ -65,10 +65,10 @@ extern "C" {
#if defined(HAVE_ALLOCA_H)
#include <alloca.h>
-#endif
-
-#ifdef _AIX
+#else
+# ifdef _AIX
#pragma alloca
+# endif
#endif
#if defined(__VMS)