X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flog10l.c;h=63dcc286d6211d455f291dc9fff2704792a2d236;hb=246f1c811448f37a44b41cd8df8d0ef9736d95f4;hp=c7aacf909a45156d1f60513f60ee237ad36e8272;hpb=71d23b310383699a3101ea8bf088398796529ddd;p=musl diff --git a/src/math/log10l.c b/src/math/log10l.c index c7aacf90..63dcc286 100644 --- a/src/math/log10l.c +++ b/src/math/log10l.c @@ -182,4 +182,10 @@ done: z += e * (L102A); return z; } +#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384 +// TODO: broken implementation to make things compile +long double log10l(long double x) +{ + return log10(x); +} #endif