Sign in
mojo
/
mojo-tools
/
92b330f6dedb4d880eb66e384a28b1a4de2f6ba2
/
.
/
fusl
/
src
/
complex
/
conj.c
blob: b544034984f98fcc24d6fc21309a590082f1e46f [
file
]
#include
"libm.h"
double
complex conj
(
double
complex z
)
{
return
CMPLX
(
creal
(
z
),
-
cimag
(
z
));
}