X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fsincosf.c;h=5e3b9a416388d5e7dfc80b168c4720ae94e3cfa6;hb=ae4b0b96d63fe3cbd70008350f998570c9e91f7f;hp=fede5f23ffbeec93733636db6d6e51753cec95d8;hpb=93a50a26cd0f9efc59cc83daae7b2d916b327ab1;p=musl diff --git a/src/math/sincosf.c b/src/math/sincosf.c index fede5f23..5e3b9a41 100644 --- a/src/math/sincosf.c +++ b/src/math/sincosf.c @@ -48,7 +48,7 @@ void sincosf(float x, float *sin, float *cos) } /* |x| ~<= 5*pi/4 */ - if (ix <= 0x407b53d1) { + if (ix <= 0x407b53d1) { if (ix <= 0x4016cbe3) { /* |x| ~<= 3pi/4 */ if (hx < 0x80000000) { *sin = __cosdf(x - s1pio2);