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