1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2000-11-27 09:23:38 +00:00
parent 1f297b8bfc
commit f54418b71f
20 changed files with 909 additions and 183 deletions

View file

@ -331,7 +331,7 @@ flodivmod(x, y, divp, modp)
{
double z;
modf(x/y, &);
modf(x/y, &z);
mod = x - z * x;
}
#endif