Subversion Repositories Kolibri OS

Rev

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

  1. #include <math.h>
  2.  
  3. double
  4. fmin (double _x, double _y)
  5. {
  6.   return ((islessequal(_x, _y) || __isnan (_y)) ? _x : _y );
  7. }
  8.