summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/e_acos.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/e_acos.c')
-rw-r--r--lib/msun/src/e_acos.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/msun/src/e_acos.c b/lib/msun/src/e_acos.c
index 7bdb79c..86cc0ff 100644
--- a/lib/msun/src/e_acos.c
+++ b/lib/msun/src/e_acos.c
@@ -41,11 +41,7 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-#ifdef __STDC__
static const double
-#else
-static double
-#endif
one= 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */
pi = 3.14159265358979311600e+00, /* 0x400921FB, 0x54442D18 */
pio2_hi = 1.57079632679489655800e+00, /* 0x3FF921FB, 0x54442D18 */
@@ -61,12 +57,8 @@ qS2 = 2.02094576023350569471e+00, /* 0x40002AE5, 0x9C598AC8 */
qS3 = -6.88283971605453293030e-01, /* 0xBFE6066C, 0x1B8D0159 */
qS4 = 7.70381505559019352791e-02; /* 0x3FB3B8C5, 0xB12E9282 */
-#ifdef __STDC__
- double __generic___ieee754_acos(double x)
-#else
- double __generic___ieee754_acos(x)
- double x;
-#endif
+double
+__generic___ieee754_acos(double x)
{
double z,p,q,r,w,s,c,df;
int32_t hx,ix;
OpenPOWER on IntegriCloud