Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #include <math.h>
  2.  
  3. float rintf (float x){
  4.   float retval;
  5.   __asm__ ("frndint;": "=t" (retval) : "0" (x));
  6.   return retval;
  7. }
  8.