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