Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
math
/
i386
/
rintl.c
blob: e1a92077f558c29f41f1d88ac9c0ade81dbd678d [
file
] [
log
] [
blame
]
#include
<math.h>
long
double
rintl
(
long
double
x
)
{
__asm__
(
"frndint"
:
"+t"
(
x
));
return
x
;
}