Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
math
/
fminf.c
blob: bd2ebd39f4d7d5ffd89493b29939284371dcec9b [
file
] [
log
] [
blame
]
#include
<math.h>
float
fminf
(
float
_x
,
float
_y
)
{
return
((
islessequal
(
_x
,
_y
)
||
_isnan
(
_y
))
?
_x
:
_y
);
}