diff options
Diffstat (limited to 'src/math/log10l.c')
-rw-r--r-- | src/math/log10l.c | 6 |
1 files changed, 6 insertions, 0 deletions
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 |