musl-tcc/src/math/x86_64/lrintl.c
2022-03-20 16:48:53 +08:00

9 lines
121 B
C

#include <math.h>
long lrintl(long double x)
{
long r;
__asm__ ("fistpll %0" : "=m"(r) : "t"(x) : "st");
return r;
}