summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-15 01:39:00 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-15 01:39:00 +0000
commitc037f1f61696d64cbe42b6bb4bd1f0558578146d (patch)
tree656640e92fe8a49f6a1274de07df9c590c02c0ff /numeric.c
parent9f9201b85d282d6f1f1999bfab7ac22b26e2d768 (diff)
* adjust style.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35027 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index b118d84d92..7371236426 100644
--- a/numeric.c
+++ b/numeric.c
@@ -843,7 +843,9 @@ flodivmod(double x, double y, double *divp, double *modp)
* An error will be raised if y == 0.
*/
-double ruby_float_mod(double x, double y) {
+double
+ruby_float_mod(double x, double y)
+{
double mod;
flodivmod(x, y, 0, &mod);
return mod;