math: add dummy implementations of 128 bit long double functions
[oweals/musl.git] / src / math / sinhl.c
index 4864ddfa6a77c215a2dc1158ca1bb75137730063..b305d4d2f3e9c5965bdbf4ddb445adef0168fd85 100644 (file)
@@ -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