X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fasinf.c;h=51fe6c617cc03569c759cd56acb1a0ecc2e55b49;hb=1ab59de81e94e7802f85d314a709f8350a0e9b65;hp=462bf0431e7e610d39d4f456b631120f86c2d4af;hpb=b12a73d5bf595b7fbb73db30c6bb144078e86ef5;p=musl diff --git a/src/math/asinf.c b/src/math/asinf.c index 462bf043..51fe6c61 100644 --- a/src/math/asinf.c +++ b/src/math/asinf.c @@ -26,7 +26,7 @@ qS1 = -7.0662963390e-01; static float R(float z) { - float p, q; + float_t p, q; p = z*(pS0+z*(pS1+z*pS2)); q = 1.0f+z*qS1; return p/q;