1 2 3 4 5 6 7 8
#include <math.h> long lrintf(float x) { long r; __asm__ ("cvtss2si %1, %0" : "=r"(r) : "x"(x)); return r; }