summaryrefslogtreecommitdiff
path: root/lib/msun/src/e_atan2f.c
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-05-28 17:03:12 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-05-28 17:03:12 +0000
commita82bbc730e20fe9dec4abeb1d949b2d02869032a (patch)
tree96c195652047b452e756960d6bdfc6786443c564 /lib/msun/src/e_atan2f.c
parent6ba807ae3ad4a36737776b8360698979fb378d97 (diff)
Notes
Diffstat (limited to 'lib/msun/src/e_atan2f.c')
-rw-r--r--lib/msun/src/e_atan2f.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/msun/src/e_atan2f.c b/lib/msun/src/e_atan2f.c
index 6e6c181bde04..d5219429d3a8 100644
--- a/lib/msun/src/e_atan2f.c
+++ b/lib/msun/src/e_atan2f.c
@@ -20,11 +20,7 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-#ifdef __STDC__
static const float
-#else
-static float
-#endif
tiny = 1.0e-30,
zero = 0.0,
pi_o_4 = 7.8539818525e-01, /* 0x3f490fdb */
@@ -32,12 +28,8 @@ pi_o_2 = 1.5707963705e+00, /* 0x3fc90fdb */
pi = 3.1415925026e+00, /* 0x40490fda */
pi_lo = 1.5099578832e-07; /* 0x34222168 */
-#ifdef __STDC__
- float __ieee754_atan2f(float y, float x)
-#else
- float __ieee754_atan2f(y,x)
- float y,x;
-#endif
+float
+__ieee754_atan2f(float y, float x)
{
float z;
int32_t k,m,hx,hy,ix,iy;