aboutsummaryrefslogtreecommitdiffstats
path: root/internal.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-01 07:34:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-01 07:34:31 +0000
commit929e9713bbfd76140bced29c6f398904ae9d4a85 (patch)
treeabb04468573060b8a2ee3a5c56cbd717d0cfbb1a /internal.h
parent9563db5eb18eae0e59da22f000ef21ed7516c179 (diff)
downloadruby-929e9713bbfd76140bced29c6f398904ae9d4a85.tar.gz
complex.c: simplify division result
* complex.c (f_divide): canonicalize rationals to simplify integer complex results. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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 ea1b926de8..bfeffabffd 100644
--- a/internal.h
+++ b/internal.h
@@ -1729,6 +1729,7 @@ rb_pid_t rb_fork_ruby(int *status);
void rb_last_status_clear(void);
/* rational.c */
+VALUE rb_rational_canonicalize(VALUE x);
VALUE rb_rational_uminus(VALUE self);
VALUE rb_rational_plus(VALUE self, VALUE other);
VALUE rb_lcm(VALUE x, VALUE y);