aboutsummaryrefslogtreecommitdiffstats
path: root/complex.c
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-28 00:22:07 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-28 00:22:07 +0000
commit53125214ccdfdb335cbe015461faf6ec7e5a8593 (patch)
tree435ebb6be5779fdfb450786b4ad47479842c405c /complex.c
parentae96b225c403b3e36e53d8763df986ffc632aa49 (diff)
downloadruby-53125214ccdfdb335cbe015461faf6ec7e5a8593.tar.gz
* complex.c: renamed some static functions.
* rational.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23876 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r--complex.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/complex.c b/complex.c
index de3d16b541..2e7dc16973 100644
--- a/complex.c
+++ b/complex.c
@@ -585,9 +585,9 @@ nucomp_negate(VALUE self)
f_negate(dat->real), f_negate(dat->imag));
}
-static VALUE
-nucomp_addsub(VALUE self, VALUE other,
- VALUE (*func)(VALUE, VALUE), ID id)
+inline static VALUE
+f_addsub(VALUE self, VALUE other,
+ VALUE (*func)(VALUE, VALUE), ID id)
{
if (k_complex_p(other)) {
VALUE real, imag;
@@ -617,7 +617,7 @@ nucomp_addsub(VALUE self, VALUE other,
static VALUE
nucomp_add(VALUE self, VALUE other)
{
- return nucomp_addsub(self, other, f_add, '+');
+ return f_addsub(self, other, f_add, '+');
}
/*
@@ -629,7 +629,7 @@ nucomp_add(VALUE self, VALUE other)
static VALUE
nucomp_sub(VALUE self, VALUE other)
{
- return nucomp_addsub(self, other, f_sub, '-');
+ return f_addsub(self, other, f_sub, '-');
}
/*
@@ -663,9 +663,9 @@ nucomp_mul(VALUE self, VALUE other)
return rb_num_coerce_bin(self, other, '*');
}
-static VALUE
-nucomp_divide(VALUE self, VALUE other,
- VALUE (*func)(VALUE, VALUE), ID id)
+inline static VALUE
+f_divide(VALUE self, VALUE other,
+ VALUE (*func)(VALUE, VALUE), ID id)
{
if (k_complex_p(other)) {
int flo;
@@ -730,7 +730,7 @@ nucomp_divide(VALUE self, VALUE other,
static VALUE
nucomp_div(VALUE self, VALUE other)
{
- return nucomp_divide(self, other, f_quo, id_quo);
+ return f_divide(self, other, f_quo, id_quo);
}
#define nucomp_quo nucomp_div
@@ -748,7 +748,7 @@ nucomp_div(VALUE self, VALUE other)
static VALUE
nucomp_fdiv(VALUE self, VALUE other)
{
- return nucomp_divide(self, other, f_fdiv, id_fdiv);
+ return f_divide(self, other, f_fdiv, id_fdiv);
}
/*
@@ -1113,7 +1113,7 @@ f_tpositive_p(VALUE x)
}
static VALUE
-nucomp_format(VALUE self, VALUE (*func)(VALUE))
+f_format(VALUE self, VALUE (*func)(VALUE))
{
VALUE s, impos;
@@ -1141,7 +1141,7 @@ nucomp_format(VALUE self, VALUE (*func)(VALUE))
static VALUE
nucomp_to_s(VALUE self)
{
- return nucomp_format(self, f_to_s);
+ return f_format(self, f_to_s);
}
/*
@@ -1156,7 +1156,7 @@ nucomp_inspect(VALUE self)
VALUE s;
s = rb_usascii_str_new2("(");
- rb_str_concat(s, nucomp_format(self, f_inspect));
+ rb_str_concat(s, f_format(self, f_inspect));
rb_str_cat2(s, ")");
return s;