root/src/system/libroot/posix/musl/math/lroundl.c
#include <math.h>

long lroundl(long double x)
{
        return roundl(x);
}