From fb7f3bf37cff4d10092f631439c0995aa97d6662 Mon Sep 17 00:00:00 2001 From: kazu Date: Thu, 14 Apr 2011 07:02:54 +0000 Subject: * 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 --- ChangeLog | 4 ++++ io.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1b47a439cd..cdc11e4739 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Apr 14 16:01:45 2011 Kazuhiro NISHIYAMA + + * io.c (rb_f_syscall): reduce warning: "HAVE___SYSCALL" is not defined. + Thu Apr 14 00:41:09 2011 CHIKANAGA Tomoyuki * thread.c (thread_fd_close_i): IOError exception should be assigned 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) -- cgit v1.2.3