fix debugger tracking of shared libraries on mips with PIE main program
[musl] / src / complex / casinl.c
index 0916c60..072adc4 100644 (file)
@@ -1,4 +1,4 @@
-#include "libm.h"
+#include "complex_impl.h"
 
 #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
 long double complex casinl(long double complex z)
@@ -15,6 +15,7 @@ long double complex casinl(long double complex z)
        x = creall(z);
        y = cimagl(z);
        w = CMPLXL(1.0 - (x - y)*(x + y), -2.0*x*y);
-       return clogl(CMPLXL(-y, x) + csqrtl(w));
+       long double complex r = clogl(CMPLXL(-y, x) + csqrtl(w));
+       return CMPLXL(cimagl(r), -creall(r));
 }
 #endif