author | Szabolcs Nagy <nsz@port70.net> | 2013年05月15日 23:08:52 +0000 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2013年05月15日 23:08:52 +0000 |
commit | e216951f509b71da193da2fc63e25b998740d58b (patch) | |
tree | 391381eafd8b0b7eb4fdbb693608072df5c181d5 /src/math/asin.c | |
parent | 2c184264eae3797de028403ed1e86c1f7ae5b813 (diff) | |
download | musl-e216951f509b71da193da2fc63e25b998740d58b.tar.gz |
-rw-r--r-- | src/math/asin.c | 2 |
diff --git a/src/math/asin.c b/src/math/asin.c index d61c04b4..3e8f99ed 100644 --- a/src/math/asin.c +++ b/src/math/asin.c @@ -58,7 +58,7 @@ qS4 = 7.70381505559019352791e-02; /* 0x3FB3B8C5, 0xB12E9282 */ static double R(double z) { - double p, q; + double_t p, q; p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5))))); q = 1.0+z*(qS1+z*(qS2+z*(qS3+z*qS4))); return p/q; |