diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-11-27 09:23:38 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-11-27 09:23:38 +0000 |
commit | 5c51be814dcde70b7f1ba3db96084bb1ad6483d0 (patch) | |
tree | d5bd57142a0d4736fdfd1f35dcd864ac40cfb045 /numeric.c | |
parent | 94e412ac6907416cfda7e0b7a264507b7fdc90df (diff) | |
download | ruby-5c51be814dcde70b7f1ba3db96084bb1ad6483d0.tar.gz ruby-5c51be814dcde70b7f1ba3db96084bb1ad6483d0.tar.xz ruby-5c51be814dcde70b7f1ba3db96084bb1ad6483d0.zip |
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r-- | numeric.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -331,7 +331,7 @@ flodivmod(x, y, divp, modp) { double z; - modf(x/y, &); + modf(x/y, &z); mod = x - z * x; } #endif |