summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-04-14 07:02:54 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-04-14 07:02:54 +0000
commitfb7f3bf37cff4d10092f631439c0995aa97d6662 (patch)
tree6c24cc41452269a1f451ec88da0fce61cf8d69e3 /io.c
parentb642a73820895c78d66ad9b949a07b7cf84886ff (diff)
* io.c (rb_f_syscall): reduce warning: "HAVE___SYSCALL" is not defined.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31272 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index a958b0f276..6a4ca44bf4 100644
--- a/io.c
+++ b/io.c
@@ -7853,7 +7853,7 @@ rb_f_syscall(int argc, VALUE *argv)
#else
VALUE arg[8];
#endif
-#if SIZEOF_VOIDP == 8 && HAVE___SYSCALL && SIZEOF_INT != 8 /* mainly *BSD */
+#if SIZEOF_VOIDP == 8 && defined(HAVE___SYSCALL) && SIZEOF_INT != 8 /* mainly *BSD */
# define SYSCALL __syscall
# define NUM2SYSCALLID(x) NUM2LONG(x)
# define RETVAL2NUM(x) LONG2NUM(x)