summaryrefslogtreecommitdiff
path: root/src/math/sinh.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/sinh.c')
-rw-r--r--src/math/sinh.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/sinh.c b/src/math/sinh.c
index aa2b1ca6..ff878d64 100644
--- a/src/math/sinh.c
+++ b/src/math/sinh.c
@@ -9,6 +9,7 @@
TYPE TGFN(sinh)(TYPE x)
{
+ SIGNAL_SAFE(0);
switch (fpclassify(x)) {
case FP_ZERO: return x;
case FP_INFINITE: return x;