Subversion Repositories Kolibri OS

Rev

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

  1. #include <math.h>
  2.  
  3. long double roundl  (long double x)
  4. {
  5.         if (x > 0)
  6.                 return floor(x + 0.5);
  7.         else
  8.                 return ceil(x - 0.5);
  9. }
  10.