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
commitbb4d72c51f9c7233c2d3b54c4fc1359557f3482d (patch)
tree2b4f0884dfe9dc59181e87e173bba0b888c30e7b /bignum.c
parentbd7e04e4d75512fd98a4084ec6f706d643e49fe6 (diff)
downloadruby-bb4d72c51f9c7233c2d3b54c4fc1359557f3482d.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;