094fdf6483842e90a9fac200394255d02bb8073d
[musl] / lroundl.c
1 #include <math.h>
2
3 long lroundl(long double x)
4 {
5         return roundl(x);
6 }