repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ldso: correct condition for local symbol handling in do_relocs
[musl.git]
/
src
/
math
/
aarch64
/
rint.c
blob
45b194b5e4959c95a60b68202dbdbabf60a7d420
1
#include <math.h>
2
3
double
rint
(
double
x
)
4
{
5
__asm__
(
"frintx %d0, %d1"
:
"=w"
(
x
) :
"w"
(
x
));
6
return
x
;
7
}