Sign in
fuchsia
/
zircon
/
sandbox/travisg/vmalloc
/
.
/
third_party
/
ulib
/
musl
/
src
/
math
/
lroundf.c
blob: 97fe403f581834fa459d2b52a0804eb07fee648d [
file
] [
log
] [
blame
]
#include
<math.h>
long
lroundf
(
float
x
)
{
return
roundf
(
x
);
}