summaryrefslogtreecommitdiff
path: root/src/complex/csqrt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/csqrt.c')
-rw-r--r--src/complex/csqrt.c1
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));