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