simplify pthread_attr_t stack/guard size representation
[oweals/musl.git] / src / math / log2l.c
index d00531d5976e26796ab126d616fb3057ce280029..722b451a026ae2ccd1b70381c4a87b7936ddb3c2 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