aboutsummaryrefslogtreecommitdiff
path: root/winsup/mingw/mingwex/math/fdimf.c
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/mingwex/math/fdimf.c')
-rw-r--r--winsup/mingw/mingwex/math/fdimf.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/winsup/mingw/mingwex/math/fdimf.c b/winsup/mingw/mingwex/math/fdimf.c
deleted file mode 100644
index 02bfc6e..0000000
--- a/winsup/mingw/mingwex/math/fdimf.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <math.h>
-
-float
-fdimf (float x, float y)
-{
- return (isgreater(x, y) ? (x - y) : 0.0F);
-}