complex: add C11 CMPLX macros and replace cpack with them
[musl] / src / complex / conjf.c
index 3155680..9af6b2c 100644 (file)
@@ -2,5 +2,5 @@
 
 float complex conjf(float complex z)
 {
-       return cpackf(crealf(z), -cimagf(z));
+       return CMPLXF(crealf(z), -cimagf(z));
 }