aboutsummaryrefslogtreecommitdiff
path: root/winsup/mingw/mingwex/math/fp_consts.c
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/mingwex/math/fp_consts.c')
-rw-r--r--winsup/mingw/mingwex/math/fp_consts.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/winsup/mingw/mingwex/math/fp_consts.c b/winsup/mingw/mingwex/math/fp_consts.c
deleted file mode 100644
index 285c9d7..0000000
--- a/winsup/mingw/mingwex/math/fp_consts.c
+++ /dev/null
@@ -1,14 +0,0 @@
-
-#include "fp_consts.h"
-const union _ieee_rep __QNAN = { __DOUBLE_QNAN_REP };
-const union _ieee_rep __SNAN = { __DOUBLE_SNAN_REP };
-const union _ieee_rep __INF = { __DOUBLE_INF_REP };
-const union _ieee_rep __DENORM = { __DOUBLE_DENORM_REP };
-
-/* ISO C99 */
-#undef nan
-/* FIXME */
-double nan (const char * tagp __attribute__((unused)) )
- { return __QNAN.double_val; }
-
-