complex: add C11 CMPLX macros and replace cpack with them
[musl] / src / complex / conjl.c
index 0133226..67f11b9 100644 (file)
@@ -2,5 +2,5 @@
 
 long double complex conjl(long double complex z)
 {
-       return cpackl(creall(z), -cimagl(z));
+       return CMPLXL(creall(z), -cimagl(z));
 }