summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-03 07:09:48 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-03 07:09:48 +0000
commitc32b77cee1ead76eafb05604d49b315217c49d49 (patch)
treea5944d3699f97c0ec42192d67aa9f9b352188ef8 /bignum.c
parentce8d9b4a0d2c16ff2d634ce6c4b00a9156cc55f3 (diff)
* numeric.c (fix_minus, fix_mul, fix_quo, fix_div, fix_mod,
fix_divmod, fix_pow): ditto. * numeric.c (fix_plus): reduce coercing when a method knows about a operand type. [ruby-dev:26723] * bignum.c (rb_big_div, rb_big_modulo): export to reduce coercing. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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 3d11efa8c4..402de8a992 100644
--- a/bignum.c
+++ b/bignum.c
@@ -1424,7 +1424,7 @@ bigdivmod(x, y, divp, modp)
* Divides big by other, returning the result.
*/
-static VALUE
+VALUE
rb_big_div(x, y)
VALUE x, y;
{
@@ -1458,7 +1458,7 @@ rb_big_div(x, y)
* information.
*/
-static VALUE
+VALUE
rb_big_modulo(x, y)
VALUE x, y;
{