blob: a742fec64c90fa55d876ea7110c9d83a48e613d0 [file] [log] [blame]
#include <math.h>
long lrint(double x)
{
long r;
__asm__ ("cvtsd2si %1, %0" : "=r"(r) : "x"(x));
return r;
}