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