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