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/j0f.c | |
parent | 2c184264eae3797de028403ed1e86c1f7ae5b813 (diff) | |
download | musl-e216951f509b71da193da2fc63e25b998740d58b.tar.gz |
-rw-r--r-- | src/math/j0f.c | 4 |
diff --git a/src/math/j0f.c b/src/math/j0f.c index 79bab62a..4b0ee3b7 100644 --- a/src/math/j0f.c +++ b/src/math/j0f.c @@ -201,7 +201,7 @@ static const float pS2[5] = { static float pzerof(float x) { const float *p,*q; - float z,r,s; + float_t z,r,s; uint32_t ix; GET_FLOAT_WORD(ix, x); @@ -297,7 +297,7 @@ static const float qS2[6] = { static float qzerof(float x) { const float *p,*q; - float s,r,z; + float_t s,r,z; uint32_t ix; GET_FLOAT_WORD(ix, x); |