1 2 3 4 5 6 7 8
#include <math.h> long lrintl(long double x) { long r; __asm__ ("fistpl %0" : "=m"(r) : "t"(x) : "st"); return r; }