Sign in
mojo
/
mojo-tools
/
9beb4f7377e271d83038be0bdaf53154ed6bc607
/
.
/
fusl
/
src
/
math
/
lroundf.c
blob: 01178aaa82eda983a872b51bd816a023909e7d7d [
file
] [
log
] [
blame
]
#include
<math.h>
long
lroundf
(
float
x
)
{
return
roundf
(
x
);
}