remove another invalid skip of locking in ungetwc
[oweals/musl.git] / src / math / asinhl.c
index e5f3175121cc6145d8d6dc7590d1ddb189065894..8635f52e82381bdaff12badbd7cd170b2e05bf62 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