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
riscv32: add dlsym
[musl.git]
/
src
/
complex
/
catanhf.c
blob
b0505f6054053cd5797ee91cf818e4a75cd8045a
1
#include
"complex_impl.h"
2
3
float complex
catanhf
(
float complex
z
)
4
{
5
z
=
catanf
(
CMPLXF
(-
cimagf
(
z
),
crealf
(
z
)));
6
return
CMPLXF
(
cimagf
(
z
), -
crealf
(
z
));
7
}