Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
math
/
x86_64
/
rintl.c
blob: e1a92077f558c29f41f1d88ac9c0ade81dbd678d [
file
] [
log
] [
blame
]
#include
<math.h>
long
double
rintl
(
long
double
x
)
{
__asm__
(
"frndint"
:
"+t"
(
x
));
return
x
;
}