diff options
Diffstat (limited to 'lib/msun/src/e_atan2f.c')
-rw-r--r-- | lib/msun/src/e_atan2f.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/msun/src/e_atan2f.c b/lib/msun/src/e_atan2f.c index b6d336d..55435b4 100644 --- a/lib/msun/src/e_atan2f.c +++ b/lib/msun/src/e_atan2f.c @@ -19,12 +19,14 @@ __FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" +static volatile float +tiny = 1.0e-30; static const float -tiny = 1.0e-30, zero = 0.0, pi_o_4 = 7.8539818525e-01, /* 0x3f490fdb */ pi_o_2 = 1.5707963705e+00, /* 0x3fc90fdb */ -pi = 3.1415927410e+00, /* 0x40490fdb */ +pi = 3.1415927410e+00; /* 0x40490fdb */ +static volatile float pi_lo = -8.7422776573e-08; /* 0xb3bbbd2e */ float |