From 0547746f04f92a0efc05b722f1cc9115cd598fa2 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 4 Dec 2006 08:06:32 +0000 Subject: * ruby.h (OFFT2NUM): use LONG2NUM() if sizeof(long) equals to sizeof(off_t). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ruby.h') diff --git a/ruby.h b/ruby.h index e92f63039c..93e474a19b 100644 --- a/ruby.h +++ b/ruby.h @@ -157,6 +157,8 @@ VALUE rb_ull2inum _((unsigned LONG_LONG)); #if SIZEOF_OFF_T > SIZEOF_LONG && defined(HAVE_LONG_LONG) # define OFFT2NUM(v) LL2NUM(v) +#elif SIZEOF_OFF_T == SIZEOF_LONG +# define OFFT2NUM(v) LONG2NUM(v) #else # define OFFT2NUM(v) INT2NUM(v) #endif -- cgit v1.2.3