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

long lroundf(float x)
{
        long n;
        __asm__ ("fcvtas %x0, %s1" : "=r"(n) : "w"(x));
        return n;
}