Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
math
/
x86_64
/
llrintl.c
blob: c439ef28d1fd8aa4a9ceb471ad12c7ff9e018650 [
file
] [
log
] [
blame
]
#include
<math.h>
long
long
llrintl
(
long
double
x
)
{
long
long
r
;
__asm__
(
"fistpll %0"
:
"=m"
(
r
)
:
"t"
(
x
)
:
"st"
);
return
r
;
}