aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-08 15:07:41 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-08 15:07:41 +0000
commitd45d20ede7d05644bb3c13e7c6dffce6a4d8b73e (patch)
tree2b4f0884dfe9dc59181e87e173bba0b888c30e7b /bignum.c
parent628e753bf0ade627f0b35d2a168bcd72b082252f (diff)
downloadruby-d45d20ede7d05644bb3c13e7c6dffce6a4d8b73e.tar.gz
make local symbols static
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52964 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 c780e7d7a3..cdb84c600d 100644
--- a/bignum.c
+++ b/bignum.c
@@ -4838,7 +4838,7 @@ rb_big2str_generic(VALUE x, int base)
}
#ifdef USE_GMP
-VALUE
+static VALUE
big2str_gmp(VALUE x, int base)
{
const size_t nails = (sizeof(BDIGIT)-SIZEOF_BDIGIT)*CHAR_BIT;