Sign in
cobalt
/
cobalt
/
1bdf8b5470dc937a8c92ce7e2f6d3392c6a1180c
/
.
/
third_party
/
musl
/
src
/
math
/
lroundf.c
blob: c4707e7db712cd545915efea603173e21efc709e [
file
] [
log
] [
blame
]
#include
<math.h>
long
lroundf
(
float
x
)
{
return
roundf
(
x
);
}