math: add asuint, asuint64, asfloat and asdouble
[musl] / src / complex / conjl.c
index 0133226..87a4ebe 100644 (file)
@@ -1,6 +1,6 @@
-#include "libm.h"
+#include "complex_impl.h"
 
 long double complex conjl(long double complex z)
 {
-       return cpackl(creall(z), -cimagl(z));
+       return CMPLXL(creall(z), -cimagl(z));
 }