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