diff options
Diffstat (limited to 'nx-X11/lib/X11/cmsMath.c')
-rw-r--r-- | nx-X11/lib/X11/cmsMath.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/nx-X11/lib/X11/cmsMath.c b/nx-X11/lib/X11/cmsMath.c index 3dbc05f7b..70b067587 100644 --- a/nx-X11/lib/X11/cmsMath.c +++ b/nx-X11/lib/X11/cmsMath.c @@ -51,8 +51,7 @@ int sqrt_loopcount; /* for cube roots, x^3 - a = 0, x_new = x - 1/3 (x - a/x^2) */ double -_XcmsCubeRoot(a) - double a; +_XcmsCubeRoot(double a) { register double abs_a, cur_guess, delta; @@ -90,14 +89,13 @@ _XcmsCubeRoot(a) #endif return cur_guess; } - + /* for square roots, x^2 - a = 0, x_new = x - 1/2 (x - a/x) */ double -_XcmsSquareRoot(a) - double a; +_XcmsSquareRoot(double a) { register double cur_guess, delta; @@ -135,4 +133,4 @@ _XcmsSquareRoot(a) #endif return cur_guess; } - + |