newlib/winsup/mingw/mingwex/math/lrintl.c

11 lines
186 B
C

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