blob: 9bcbf97144399ebb0de40cb8df44573c89e6dbe5 [file] [log] [blame]
#include <math.h>
float rintf (float x){
float retval;
__asm__ ("frndint;": "=t" (retval) : "0" (x));
return retval;
}