1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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/trunk@20683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2008-12-12 23:40:55 +00:00
parent b7e026fb3f
commit 8729368f14
6 changed files with 29 additions and 24 deletions

View file

@ -1,7 +1,7 @@
extern void nucomp_canonicalize(int);
extern void nucomp_canonicalization(int);
void
Init_complex(void)
{
nucomp_canonicalize(1);
nucomp_canonicalization(1);
}