about summary refs log tree commit diff
path: root/src/math/asinhl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/asinhl.c')
-rw-r--r--src/math/asinhl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/math/asinhl.c b/src/math/asinhl.c
index e5f31751..8635f52e 100644
--- a/src/math/asinhl.c
+++ b/src/math/asinhl.c
@@ -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