Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/mingwex/math/ldexpl.c')
-rw-r--r--winsup/mingw/mingwex/math/ldexpl.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/winsup/mingw/mingwex/math/ldexpl.c b/winsup/mingw/mingwex/math/ldexpl.c
deleted file mode 100644
index e4477bf6c..000000000
--- a/winsup/mingw/mingwex/math/ldexpl.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <math.h>
-#include <errno.h>
-
-
-long double ldexpl(long double x, int expn)
-{
- if (isfinite (x) && x != 0.0L)
- {
- x = scalbnl (x , expn);
- if (!isfinite (x) || x == 0.0) errno = ERANGE;
- }
- return x;
-}
-