X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fatan2f.c;h=19b134dc6369dfac8ee10145e2ace13291748274;hb=02db27d9deaee71b244c91e720ec819c74dab150;hp=b6a7f92d6d10e7f8dd69a8796a1ac8167b12b696;hpb=8d0a6f7a1c47b280647f292e6864b85b72c71f2e;p=musl diff --git a/src/math/atan2f.c b/src/math/atan2f.c index b6a7f92d..19b134dc 100644 --- a/src/math/atan2f.c +++ b/src/math/atan2f.c @@ -15,14 +15,14 @@ #include "libm.h" -static volatile float +static const volatile float tiny = 1.0e-30; static const float zero = 0.0, pi_o_4 = 7.8539818525e-01, /* 0x3f490fdb */ pi_o_2 = 1.5707963705e+00, /* 0x3fc90fdb */ pi = 3.1415927410e+00; /* 0x40490fdb */ -static volatile float +static const volatile float pi_lo = -8.7422776573e-08; /* 0xb3bbbd2e */ float atan2f(float y, float x)