Sign in
third-party-mirror
/
mingw-w64
/
7cdb53961187ee6d1a487af1d45951247c6ef66a
/
.
/
mingw-w64-crt
/
math
/
atanl.c
blob: de5d0ada131908200f16872f42b71cb48493f52d [
file
] [
log
] [
blame
]
long
double
atanl
(
long
double
x
)
{
long
double
res
;
asm
(
"fld1\n\t"
"fpatan"
:
"=t"
(
res
)
:
"0"
(
x
));
return
res
;
}