X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flogl.c;h=5d5365929e62a351c4544bd9e6aace6e02834292;hb=9e01be6e49b9ae433072207f420ef33c8189eb78;hp=03c5188fd9d79389d938cff1b6900ea90fa4aaf3;hpb=71d23b310383699a3101ea8bf088398796529ddd;p=musl diff --git a/src/math/logl.c b/src/math/logl.c index 03c5188f..5d536592 100644 --- a/src/math/logl.c +++ b/src/math/logl.c @@ -166,4 +166,10 @@ long double logl(long double x) z = z + e * C1; /* This sum has an error of 1/2 lsb. */ return z; } +#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384 +// TODO: broken implementation to make things compile +long double logl(long double x) +{ + return log(x); +} #endif