Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
math
/
lroundl.c
blob: 094fdf6483842e90a9fac200394255d02bb8073d [
file
] [
log
] [
blame
]
#include
<math.h>
long
lroundl
(
long
double
x
)
{
return
roundl
(
x
);
}