summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/math/fabs.c
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/mingwex/math/fabs.c')
-rw-r--r--winsup/mingw/mingwex/math/fabs.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/winsup/mingw/mingwex/math/fabs.c b/winsup/mingw/mingwex/math/fabs.c
deleted file mode 100644
index c2074e8cb..000000000
--- a/winsup/mingw/mingwex/math/fabs.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <math.h>
-
-double
-fabs (double x)
-{
- double res;
-
- asm ("fabs;" : "=t" (res) : "0" (x));
- return res;
-}