Sign in
android
/
platform
/
external
/
musl
/
19dce3a772a8cc99215ef15cfb152eb027471c1a
/
.
/
src
/
math
/
lroundf.c
blob: c4707e7db712cd545915efea603173e21efc709e [
file
] [
log
] [
blame
]
#include
<math.h>
long
lroundf
(
float
x
)
{
return
roundf
(
x
);
}