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

long long llround(double x)
{
        return round(x);
}