musl-tcc/src/math/i386/rintl.c

8 lines
99 B
C

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