aboutsummaryrefslogtreecommitdiffstats
path: root/numeric.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-16 06:52:00 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-16 06:52:00 +0000
commit34cc6fef830adb4f5fcb54e5ee7cfe340da5eb04 (patch)
tree8df50b0d900a3e2c613feaf437a6648c2068db84 /numeric.c
parent429245aa9f858c297d613636b9b8be8671471a64 (diff)
downloadruby-34cc6fef830adb4f5fcb54e5ee7cfe340da5eb04.tar.gz
Make some internal functions static
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65764 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index c66da93b03..8f0a805c68 100644
--- a/numeric.c
+++ b/numeric.c
@@ -3902,7 +3902,7 @@ rb_int_modulo(VALUE x, VALUE y)
* See Numeric#divmod.
*/
-VALUE
+static VALUE
int_remainder(VALUE x, VALUE y)
{
if (FIXNUM_P(x)) {