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/atanf.c | |
parent | 2c184264eae3797de028403ed1e86c1f7ae5b813 (diff) | |
download | musl-e216951f509b71da193da2fc63e25b998740d58b.tar.gz |
-rw-r--r-- | src/math/atanf.c | 2 |
diff --git a/src/math/atanf.c b/src/math/atanf.c index 4b59509a..ac8bfd06 100644 --- a/src/math/atanf.c +++ b/src/math/atanf.c @@ -40,7 +40,7 @@ static const float aT[] = { float atanf(float x) { - float w,s1,s2,z; + float_t w,s1,s2,z; uint32_t ix,sign; int id; |