Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
math
/
aarch64
/
round.c
blob: 897a84cc2a043b2e8fdaef03fc2bbd665bde5366 [
file
] [
log
] [
blame
]
#include
<math.h>
double
round
(
double
x
)
{
__asm__
(
"frinta %d0, %d1"
:
"=w"
(
x
)
:
"w"
(
x
));
return
x
;
}