summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorS-H-GAMELINKS <gamelinks007@gmail.com>2020-12-11 14:20:43 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-12 14:12:40 +0900
commit52bca75cde2d888e636301fc43f6371808118154 (patch)
tree70f47b5f23765f943e59f87461fac91f301d7c47
parent3e2399134509930f3fe4d98787264f3a2c96af4c (diff)
Remove unused function declarations
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3886
-rw-r--r--numeric.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/numeric.c b/numeric.c
index ab6e6d9ebf..2d338e1b26 100644
--- a/numeric.c
+++ b/numeric.c
@@ -170,13 +170,9 @@ round_half_even(double x, double s)
return x;
}
-static VALUE fix_uminus(VALUE num);
-static VALUE fix_mul(VALUE x, VALUE y);
static VALUE fix_lshift(long, unsigned long);
static VALUE fix_rshift(long, unsigned long);
static VALUE int_pow(long x, unsigned long y);
-static VALUE int_even_p(VALUE x);
-static int int_round_zero_p(VALUE num, int ndigits);
static VALUE rb_int_floor(VALUE num, int ndigits);
static VALUE rb_int_ceil(VALUE num, int ndigits);
static VALUE flo_to_i(VALUE num);