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