X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2F__log1p.h;h=57187115c3a4bc1406b8d95d0b0a2635ffa1ac44;hb=16a1e0365d83c387d0dddd3c127ac7c8dcdf17fc;hp=ec2c77b9318e2113297ff0cabb7df732f27b6efd;hpb=b69f695acedd4ce2798ef9ea28d834ceccc789bd;p=musl diff --git a/src/math/__log1p.h b/src/math/__log1p.h index ec2c77b9..57187115 100644 --- a/src/math/__log1p.h +++ b/src/math/__log1p.h @@ -81,7 +81,7 @@ Lg7 = 1.479819860511658591e-01; /* 3FC2F112 DF3E5244 */ */ static inline double __log1p(double f) { - double hfsq,s,z,R,w,t1,t2; + double_t hfsq,s,z,R,w,t1,t2; s = f/(2.0+f); z = s*s;