aboutsummaryrefslogtreecommitdiffstats
path: root/internal.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-12 13:17:04 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-12 13:17:04 +0000
commita395aca709c9a9ffa73b7f69071a540672005973 (patch)
tree0add7480e210a113c12cf1e6ac6cccf5985c567a /internal.h
parent2ba248e7f48dfdd8625d580f34db3caa722acb4b (diff)
downloadruby-a395aca709c9a9ffa73b7f69071a540672005973.tar.gz
complex.c: rb_complex prefix
* complex.c (rb_complex_plus, rb_complex_mul): rename to rb_complex prefix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55645 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal.h b/internal.h
index f23d7e2be0..1a75532e79 100644
--- a/internal.h
+++ b/internal.h
@@ -901,8 +901,8 @@ CONSTFUNC(const char * rb_insns_name(int i));
VALUE rb_insns_name_array(void);
/* complex.c */
-VALUE rb_nucomp_add(VALUE, VALUE);
-VALUE rb_nucomp_mul(VALUE, VALUE);
+VALUE rb_complex_plus(VALUE, VALUE);
+VALUE rb_complex_mul(VALUE, VALUE);
/* cont.c */
VALUE rb_obj_is_fiber(VALUE);