diff options
Diffstat (limited to 'src/complex/conj.c')
-rw-r--r-- | src/complex/conj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/complex/conj.c b/src/complex/conj.c index 4aceea7b..0b3f5f46 100644 --- a/src/complex/conj.c +++ b/src/complex/conj.c @@ -2,5 +2,5 @@ double complex conj(double complex z) { - return cpack(creal(z), -cimag(z)); + return CMPLX(creal(z), -cimag(z)); } |