fix wide printf forms ignoring width for %lc format specifier
[musl] / src / math / tanhl.c
index f594b85..4e1aa9f 100644 (file)
@@ -39,4 +39,10 @@ long double tanhl(long double x)
        }
        return sign ? -t : t;
 }
+#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384
+// TODO: broken implementation to make things compile
+long double tanhl(long double x)
+{
+       return tanh(x);
+}
 #endif