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. fminl (long double _x, long double _y)
  5. {
  6.   return ((islessequal(_x, _y) || __isnanl (_y)) ? _x : _y );
  7. }
  8.