X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fcomplex%2Fconj.c;h=0b3f5f46306c78086e026c7d61a0f7b8390dea4e;hb=3d3903fa5bd18f66c4f22fb766615d84b9519aa0;hp=4aceea7b848e46d850b64838eee1f63986772fc9;hpb=b69f695acedd4ce2798ef9ea28d834ceccc789bd;p=musl diff --git a/src/complex/conj.c b/src/complex/conj.c index 4aceea7b..0b3f5f46 100644 --- a/src/complex/conj.c +++ b/src/complex/conj.c @@ -2,5 +2,5 @@ double complex conj(double complex z) { - return cpack(creal(z), -cimag(z)); + return CMPLX(creal(z), -cimag(z)); }