aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bignum.c b/bignum.c
index 34c846a8f3..365bd3efc5 100644
--- a/bignum.c
+++ b/bignum.c
@@ -7006,7 +7006,7 @@ rb_big_bit_length(VALUE big)
* Returns <code>true</code> if <i>big</i> is an odd number.
*/
-static VALUE
+VALUE
rb_big_odd_p(VALUE num)
{
if (BIGNUM_LEN(num) != 0 && BDIGITS(num)[0] & 1) {
@@ -7022,7 +7022,7 @@ rb_big_odd_p(VALUE num)
* Returns <code>true</code> if <i>big</i> is an even number.
*/
-static VALUE
+VALUE
rb_big_even_p(VALUE num)
{
if (BIGNUM_LEN(num) != 0 && BDIGITS(num)[0] & 1) {