Subversion Repositories Kolibri OS

Rev

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

  1. #include <math.h>
  2.  
  3. float
  4. fdimf (float x, float y)
  5. {
  6.   return  (isgreater(x, y) ? (x - y) : 0.0F);
  7. }
  8.