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

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