diff options
author | S-H-GAMELINKS <[email protected]> | 2020-12-11 14:20:43 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-12-12 14:12:40 +0900 |
commit | 52bca75cde2d888e636301fc43f6371808118154 (patch) | |
tree | 70f47b5f23765f943e59f87461fac91f301d7c47 | |
parent | 3e2399134509930f3fe4d98787264f3a2c96af4c (diff) |
Remove unused function declarations
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3886
-rw-r--r-- | numeric.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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); |