From c037f1f61696d64cbe42b6bb4bd1f0558578146d Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 15 Mar 2012 01:39:00 +0000 Subject: * adjust style. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35027 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'numeric.c') 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; -- cgit v1.2.3