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