blob: a5276a60d8f4c0baa6e72836ea43f24b03fb4666 [file] [log] [blame]
#include <math.h>
double rint(double x)
{
__asm__ ("frndint" : "+t"(x));
return x;
}