Sign in
mojo
/
mojo
/
4a4d4e08def91646df742850bfe5ea89f56345e2
/
.
/
fusl
/
src
/
complex
/
conj.c
blob: 0b3f5f46306c78086e026c7d61a0f7b8390dea4e [
file
] [
log
] [
blame
]
#include
"libm.h"
double
complex conj
(
double
complex z
)
{
return
CMPLX
(
creal
(
z
),
-
cimag
(
z
));
}