summaryrefslogtreecommitdiff
path: root/lib/acosl.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2010-03-25 07:48:14 +0100
committerBruno Haible <bruno@clisp.org>2010-03-25 07:48:14 +0100
commitaeb898d88cddc17cefc7738940b4917e9ee27933 (patch)
treeae514cb8789f65af85031f2b7ae2d283d2133571 /lib/acosl.c
parent4ffe8b817bffb608db5d8342fa81824aed191ba6 (diff)
downloadgnulib-aeb898d88cddc17cefc7738940b4917e9ee27933.tar.gz
Minor formatting changes.
Diffstat (limited to 'lib/acosl.c')
-rw-r--r--lib/acosl.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/acosl.c b/lib/acosl.c
index 109104ac7d..260a4370eb 100644
--- a/lib/acosl.c
+++ b/lib/acosl.c
@@ -108,7 +108,7 @@ acosl (long double x)
if (x < 0.0L)
{
- t = pi - acosl(-x);
+ t = pi - acosl (-x);
if (huge + x > one) /* return with inexact */
return t;
}
@@ -183,7 +183,7 @@ acosl (long double x)
return (pio2_hi - asinr5625) - (p / q - pio2_lo);
}
else
- return 2 * asinl(sqrtl((1-x)/2));
+ return 2 * asinl (sqrtl ((1 - x) / 2));
}
#if 0
@@ -191,35 +191,35 @@ int
main (void)
{
printf ("%.18Lg %.18Lg\n",
- acosl(1.0L),
+ acosl (1.0L),
1.5707963267948966192313216916397514420984L -
1.5707963267948966192313216916397514420984L);
printf ("%.18Lg %.18Lg\n",
- acosl(0.7071067811865475244008443621048490392848L),
+ acosl (0.7071067811865475244008443621048490392848L),
1.5707963267948966192313216916397514420984L -
0.7853981633974483096156608458198757210492L);
printf ("%.18Lg %.18Lg\n",
- acosl(0.5L),
+ acosl (0.5L),
1.5707963267948966192313216916397514420984L -
0.5235987755982988730771072305465838140328L);
printf ("%.18Lg %.18Lg\n",
- acosl(0.3090169943749474241022934171828190588600L),
+ acosl (0.3090169943749474241022934171828190588600L),
1.5707963267948966192313216916397514420984L -
0.3141592653589793238462643383279502884196L);
printf ("%.18Lg %.18Lg\n",
- acosl(-1.0L),
+ acosl (-1.0L),
1.5707963267948966192313216916397514420984L -
-1.5707963267948966192313216916397514420984L);
printf ("%.18Lg %.18Lg\n",
- acosl(-0.7071067811865475244008443621048490392848L),
+ acosl (-0.7071067811865475244008443621048490392848L),
1.5707963267948966192313216916397514420984L -
-0.7853981633974483096156608458198757210492L);
printf ("%.18Lg %.18Lg\n",
- acosl(-0.5L),
+ acosl (-0.5L),
1.5707963267948966192313216916397514420984L -
-0.5235987755982988730771072305465838140328L);
printf ("%.18Lg %.18Lg\n",
- acosl(-0.3090169943749474241022934171828190588600L),
+ acosl (-0.3090169943749474241022934171828190588600L),
1.5707963267948966192313216916397514420984L -
-0.3141592653589793238462643383279502884196L);
}