fix misleading comment in strstr
[musl.git] / src / complex / conj.c
bloba3b19a4aa979a4cabdba7e57c4f325b0e18b95b1
1 #include "complex_impl.h"
3 double complex conj(double complex z)
5 return CMPLX(creal(z), -cimag(z));