diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | bignum.c | 3 |
2 files changed, 4 insertions, 3 deletions
@@ -1,3 +1,7 @@ +Wed May 8 13:41:57 2013 KOSAKI Motohiro <[email protected]> + + * bignum.c: remove redundant decl for big_lshift() big_rshift(). + Sun May 12 16:06:43 2013 NARUSE, Yui <[email protected]> * ext/socket/rubysocket.h (rsock_inspect_sockaddr): as r40646 @@ -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) { |