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
  4. fdiml (long double x, long double y)
  5. {
  6.    return  (isgreater(x, y) ? (x - y) : 0.0L);
  7. }
  8.