Sign in
cobalt
/
cobalt.git
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
math
/
aarch64
/
rint.c
blob: 45b194b5e4959c95a60b68202dbdbabf60a7d420 [
file
]
#include
<math.h>
double
rint
(
double
x
)
{
__asm__
(
"frintx %d0, %d1"
:
"=w"
(
x
)
:
"w"
(
x
));
return
x
;
}