summaryrefslogtreecommitdiff
path: root/src/complex/cabs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/cabs.c')
-rw-r--r--src/complex/cabs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/complex/cabs.c b/src/complex/cabs.c
index 5600154d..d8268c25 100644
--- a/src/complex/cabs.c
+++ b/src/complex/cabs.c
@@ -7,6 +7,7 @@
TYPE TGFN(cabs)(TYPE complex z)
{
+ SIGNAL_SAFE(0);
return TGFN(hypot)(TGFN(creal)(z), TGFN(cimag)(z));
}