diff options
Diffstat (limited to 'src/complex/conjl.c')
-rw-r--r-- | src/complex/conjl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/complex/conjl.c b/src/complex/conjl.c index 01332262..67f11b9d 100644 --- a/src/complex/conjl.c +++ b/src/complex/conjl.c @@ -2,5 +2,5 @@ long double complex conjl(long double complex z) { - return cpackl(creall(z), -cimagl(z)); + return CMPLXL(creall(z), -cimagl(z)); } |