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