diff options
Diffstat (limited to 'src/complex/conj.c')
-rw-r--r-- | src/complex/conj.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/complex/conj.c b/src/complex/conj.c index 5f68ab45..1ec7e0e9 100644 --- a/src/complex/conj.c +++ b/src/complex/conj.c @@ -7,6 +7,7 @@ TYPE complex TGFN(conj)(TYPE complex z) { + SIGNAL_SAFE(0); return TGFN(creal)(z) - TGFN(cimag)(z); } |