summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-10 14:30:34 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-10 14:38:30 +0900
commitd69ffa4d93b12ddfb0d77f146921eb5d2fd62919 (patch)
tree42ced103cb83cac794b6e2c68b2639d2e6be5b77 /internal.h
parent98c22c78e40d84678e7bac187236e049e9d8c211 (diff)
Expanded f_quo
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index 76c10c8bf5..2ba49861fe 100644
--- a/internal.h
+++ b/internal.h
@@ -1763,6 +1763,7 @@ VALUE rb_float_plus(VALUE x, VALUE y);
VALUE rb_int_minus(VALUE x, VALUE y);
VALUE rb_int_mul(VALUE x, VALUE y);
VALUE rb_float_mul(VALUE x, VALUE y);
+VALUE rb_float_div(VALUE x, VALUE y);
VALUE rb_int_idiv(VALUE x, VALUE y);
VALUE rb_int_modulo(VALUE x, VALUE y);
VALUE rb_int_round(VALUE num, int ndigits, enum ruby_num_rounding_mode mode);