diff options
Diffstat (limited to 'src/complex/catanh.c')
-rw-r--r-- | src/complex/catanh.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/complex/catanh.c b/src/complex/catanh.c index 05108c1c..a21d9be9 100644 --- a/src/complex/catanh.c +++ b/src/complex/catanh.c @@ -8,6 +8,7 @@ TYPE complex TGFN(catanh)(TYPE complex z) { + SIGNAL_SAFE(0); int classr = fpclassify(TGFN(creal)(z)); int classi = fpclassify(TGFN(cimag)(z)); int signr = signbit(TGFN(creal)(z)); |