musl-tcc/src/math/x86_64/lrintl.c

9 lines
121 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <math.h>
long lrintl(long double x)
{
long r;
__asm__ ("fistpll %0" : "=m"(r) : "t"(x) : "st");
return r;
}