fix wide printf forms ignoring width for %lc format specifier
[musl] / src / math / log2l.c
index d00531d..722b451 100644 (file)
@@ -173,4 +173,10 @@ done:
        z += e;
        return z;
 }
+#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384
+// TODO: broken implementation to make things compile
+long double log2l(long double x)
+{
+       return log2(x);
+}
 #endif