From 2f6cab0f59a07194a6a6d1a9cba68062613b1e6d Mon Sep 17 00:00:00 2001 From: kosaki Date: Sun, 12 May 2013 08:40:00 +0000 Subject: [PATCH] * 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 --- ChangeLog | 4 ++++ bignum.c | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 113c24b7e1..d60b532c2f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed May 8 13:41:57 2013 KOSAKI Motohiro + + * bignum.c: remove redundant decl for big_lshift() big_rshift(). + Sun May 12 16:06:43 2013 NARUSE, Yui * ext/socket/rubysocket.h (rsock_inspect_sockaddr): as r40646 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) {