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
fix TZ parsing logic for identifying POSIX-form strings
[musl.git]
/
src
/
complex
/
ctanf.c
blob
04c3ff198a24f59fff99d732b816ea07ab418109
1
#include
"complex_impl.h"
2
3
float complex
ctanf
(
float complex
z
)
4
{
5
z
=
ctanhf
(
CMPLXF
(-
cimagf
(
z
),
crealf
(
z
)));
6
return
CMPLXF
(
cimagf
(
z
), -
crealf
(
z
));
7
}