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

long lroundf(float x)
{
        return roundf(x);
}