mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-01 19:24:24 +03:00
8 lines
149 B
C
8 lines
149 B
C
|
#include <math.h>
|
||
|
|
||
|
long double
|
||
|
fmaxl (long double _x, long double _y)
|
||
|
{
|
||
|
return (( isgreaterequal(_x, _y) || __isnanl (_y)) ? _x : _y );
|
||
|
}
|