Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
complex
/
cargf.c
blob: a497dff8036cd6fe7c9129bdeaabd2192eca551e [
file
] [
log
] [
blame
]
#include
<complex.h>
float
__attribute__
((
const
))
cargf
(
float
_Complex
_Z
)
{
float
res
;
__asm__
(
"fpatan;"
:
"=t"
(
res
)
:
"0"
(
__real__ _Z
),
"u"
(
__imag__ _Z
)
:
"st(1)"
);
return
res
;
}