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