Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

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