inttostr: add a new function, inttostr, and tests
[pspp] / lib / sqrtl.c
index 8c492f2bbd96dbb8f44555c9f3bc9b5cb1dba3bc..3ebee4dee5227ed8c03aaf677ff4009a3eeeee2c 100644 (file)
@@ -27,7 +27,7 @@
 
 /* A simple Newton-Raphson method. */
 long double
-sqrtl(long double x)
+sqrtl (long double x)
 {
   long double delta, y;
   int exponent;
@@ -38,7 +38,7 @@ sqrtl(long double x)
 
   /* Check for negative numbers */
   if (x < 0.0L)
-    return (long double) sqrt(-1);
+    return (long double) sqrt (-1);
 
   /* Check for zero and infinites */
   if (x + x == x)