summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/math/fmaxf.c
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/mingwex/math/fmaxf.c')
-rw-r--r--winsup/mingw/mingwex/math/fmaxf.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/winsup/mingw/mingwex/math/fmaxf.c b/winsup/mingw/mingwex/math/fmaxf.c
deleted file mode 100644
index 079a7e746..000000000
--- a/winsup/mingw/mingwex/math/fmaxf.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <math.h>
-
-float
-fmaxf (float _x, float _y)
-{
- return (( isgreaterequal(_x, _y) || __isnanf (_y)) ? _x : _y );
-}