remove LFS64 symbol aliases; replace with dynamic linker remapping
[musl] / src / math / log10l.c
index c7aacf9..63dcc28 100644 (file)
@@ -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