add further ioctl time64 fallback conversion for device-specific command
[musl] / src / math / asinhl.c
index e5f3175..8635f52 100644 (file)
@@ -32,4 +32,10 @@ long double asinhl(long double x)
        }
        return s ? -x : x;
 }
+#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384
+// TODO: broken implementation to make things compile
+long double asinhl(long double x)
+{
+       return asinh(x);
+}
 #endif