Subversion Repositories Kolibri OS

Rev

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

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