add sched_getcpu vDSO support
[oweals/musl.git] / src / math / acoshl.c
index 4aa84acb2ea3684b0ce4c3c2199b0ab6a6d4814e..8d4b43f64cdd899877bf39f43c7657f1f3b3f17c 100644 (file)
@@ -20,4 +20,10 @@ long double acoshl(long double x)
                return logl(2*x - 1/(x+sqrtl(x*x-1)));
        return logl(x) + 0.693147180559945309417232121458176568L;
 }
+#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384
+// TODO: broken implementation to make things compile
+long double acoshl(long double x)
+{
+       return acosh(x);
+}
 #endif