diff lib/atanl.c @ 12421:e8d2c6fc33ad

Use spaces for indentation, not tabs.
author Bruno Haible <bruno@clisp.org>
date Thu, 10 Dec 2009 20:28:30 +0100 (2009-12-10)
parents 678640901735
children 4b3d35486c68
line wrap: on
line diff
--- a/lib/atanl.c
+++ b/lib/atanl.c
@@ -18,9 +18,9 @@
 /* Specification.  */
 #include <math.h>
 
-/*							s_atanl.c
+/*                                                      s_atanl.c
  *
- *	Inverse circular tangent for 128-bit long double precision
+ *      Inverse circular tangent for 128-bit long double precision
  *      (arctangent)
  *
  *
@@ -185,9 +185,9 @@
     {
       /* Infinity. */
       if (sign)
-	return -atantbl[83];
+        return -atantbl[83];
       else
-	return atantbl[83];
+        return atantbl[83];
     }
 
   if (sign)
@@ -201,7 +201,7 @@
   else
     {
       /* Index of nearest table element.
-	 Roundoff to integer is asymmetrical to avoid cancellation when t < 0
+         Roundoff to integer is asymmetrical to avoid cancellation when t < 0
          (cf. fdlibm). */
       k = 8.0 * x + 0.25;
       u = 0.125 * k;