summaryrefslogtreecommitdiff
path: root/src/math/atanh.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/atanh.c')
-rw-r--r--src/math/atanh.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/atanh.c b/src/math/atanh.c
index 97cb2b3b..af2b107c 100644
--- a/src/math/atanh.c
+++ b/src/math/atanh.c
@@ -7,6 +7,7 @@
TYPE TGFN(atanh)(TYPE x)
{
+ SIGNAL_SAFE(0);
if (fpclassify(x) == FP_ZERO) {
return x;
}