X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2F__log1pf.h;h=f2fbef291fb443c52c41332880128be63278eac6;hb=01739902843e93ec6e9bf8e17d32c8ddf73fad81;hp=99492c5a1ac9b892628d79b61f38df37eb1a85de;hpb=93a50a26cd0f9efc59cc83daae7b2d916b327ab1;p=musl diff --git a/src/math/__log1pf.h b/src/math/__log1pf.h index 99492c5a..f2fbef29 100644 --- a/src/math/__log1pf.h +++ b/src/math/__log1pf.h @@ -22,7 +22,7 @@ Lg4 = 0xf89e26.0p-26; /* 0.24279078841 */ static inline float __log1pf(float f) { - float hfsq,s,z,R,w,t1,t2; + float_t hfsq,s,z,R,w,t1,t2; s = f/(2.0f + f); z = s*s;