summaryrefslogtreecommitdiff
path: root/src/math/sinhl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/sinhl.c')
-rw-r--r--src/math/sinhl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/math/sinhl.c b/src/math/sinhl.c
index 4864ddfa..b305d4d2 100644
--- a/src/math/sinhl.c
+++ b/src/math/sinhl.c
@@ -34,4 +34,10 @@ long double sinhl(long double x)
t = expl(0.5*absx);
return h*t*t;
}
+#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384
+// TODO: broken implementation to make things compile
+long double sinhl(long double x)
+{
+ return sinh(x);
+}
#endif