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

8 lines
99 B
C

#include <math.h>
long double rintl(long double x)
{
__asm__ ("frndint" : "+t"(x));
return x;
}