repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
select: overhaul for time64
[musl.git]
/
src
/
complex
/
conj.c
blob
a3b19a4aa979a4cabdba7e57c4f325b0e18b95b1
1
#include
"complex_impl.h"
2
3
double complex
conj
(
double complex
z
)
4
{
5
return
CMPLX
(
creal
(
z
), -
cimag
(
z
));
6
}