summaryrefslogtreecommitdiff
path: root/ext/mathn
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-19 11:36:56 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-19 11:36:56 +0000
commitf85491da545cb24a302627932890be446180f64b (patch)
treede62dda88f11a3c2368e41bc52f4039008304889 /ext/mathn
parent2458172de888472f276371ec02e25744b08b5a30 (diff)
merges r20683 from trunk into ruby_1_9_1.
* complex.c (nucomp_canonicalization): renamed. * ext/math/complex.c: followed the above change. * rational.c (nurat_canonicalization): renamed. * ext/math/rational.c: followed the above change. * configure.in: defines a new macro. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@20874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/mathn')
-rw-r--r--ext/mathn/complex/complex.c4
-rw-r--r--ext/mathn/rational/rational.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/mathn/complex/complex.c b/ext/mathn/complex/complex.c
index 5ffa5917e4..dce494959f 100644
--- a/ext/mathn/complex/complex.c
+++ b/ext/mathn/complex/complex.c
@@ -1,7 +1,7 @@
-extern void nucomp_canonicalize(int);
+extern void nucomp_canonicalization(int);
void
Init_complex(void)
{
- nucomp_canonicalize(1);
+ nucomp_canonicalization(1);
}
diff --git a/ext/mathn/rational/rational.c b/ext/mathn/rational/rational.c
index fe6797454d..2ac5999946 100644
--- a/ext/mathn/rational/rational.c
+++ b/ext/mathn/rational/rational.c
@@ -1,7 +1,7 @@
-extern void nurat_canonicalize(int);
+extern void nurat_canonicalization(int);
void
Init_rational(void)
{
- nurat_canonicalize(1);
+ nurat_canonicalization(1);
}