From a3c9cda6d767a2952973dc22004226dd9e1c29c9 Mon Sep 17 00:00:00 2001 From: mrkn Date: Thu, 17 Mar 2016 17:07:29 +0000 Subject: * bignum.c (rb_big_even_p, rb_big_odd_p): make them public functions to be available in other source files. * include/ruby/intern.h (rb_big_even_p, rb_big_odd_p): add prototype declarations. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54163 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/intern.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/ruby') diff --git a/include/ruby/intern.h b/include/ruby/intern.h index 816bc7e140..a53cfcb691 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -131,6 +131,8 @@ VALUE rb_big_or(VALUE, VALUE); VALUE rb_big_xor(VALUE, VALUE); VALUE rb_big_lshift(VALUE, VALUE); VALUE rb_big_rshift(VALUE, VALUE); +VALUE rb_big_odd_p(VALUE); +VALUE rb_big_even_p(VALUE); /* For rb_integer_pack and rb_integer_unpack: */ /* "MS" in MSWORD and MSBYTE means "most significant" */ -- cgit v1.2.3