summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-31 00:13:13 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-31 00:13:13 +0000
commitd71702168ca57315179441bce49402295b28240c (patch)
tree941728365944fd8c2de3707253d4e598c576ce54 /bignum.c
parentd500908417d88291a649a46de2766c3aa8dcf82d (diff)
merges r31778 from trunk into ruby_1_9_2.
-- * numeric.c (flo_round): fix for negative value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@31842 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bignum.c b/bignum.c
index 9181c9dd1c..fdbd300660 100644
--- a/bignum.c
+++ b/bignum.c
@@ -1608,7 +1608,7 @@ rb_big_eql(VALUE x, VALUE y)
* Unary minus (returns an integer whose value is 0-big)
*/
-static VALUE
+VALUE
rb_big_uminus(VALUE x)
{
VALUE z = rb_big_clone(x);