summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-12 08:40:00 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-12 08:40:00 +0000
commit2f6cab0f59a07194a6a6d1a9cba68062613b1e6d (patch)
tree65377501870b1470f06408707d957b3dd33f3125 /bignum.c
parent5aa618819b43af091ab823c2f51bd3fefa20c410 (diff)
* bignum.c: remove redundant decl for big_lshift() big_rshift().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40655 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/bignum.c b/bignum.c
index 306231c0df..ee9d3dddb4 100644
--- a/bignum.c
+++ b/bignum.c
@@ -3055,9 +3055,6 @@ bdigbitsize(BDIGIT x)
return size;
}
-static VALUE big_lshift(VALUE, unsigned long);
-static VALUE big_rshift(VALUE, unsigned long);
-
static VALUE
big_shift(VALUE x, long n)
{