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