summaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/ldbl-128ibm/w_expl.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ieee754/ldbl-128ibm/w_expl.c')
-rw-r--r--sysdeps/ieee754/ldbl-128ibm/w_expl.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/sysdeps/ieee754/ldbl-128ibm/w_expl.c b/sysdeps/ieee754/ldbl-128ibm/w_expl.c
deleted file mode 100644
index c9d44b61dd..0000000000
--- a/sysdeps/ieee754/ldbl-128ibm/w_expl.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <math.h>
-#include <math_private.h>
-#include <math_ldbl_opt.h>
-
-long double __expl(long double x) /* wrapper exp */
-{
- long double z;
- z = __ieee754_expl(x);
- if (_LIB_VERSION == _IEEE_)
- return z;
- if (isfinite(x))
- {
- if (!isfinite (z))
- return __kernel_standard_l(x,x,206); /* exp overflow */
- else if (z == 0.0L)
- return __kernel_standard_l(x,x,207); /* exp underflow */
- }
- return z;
-}
-hidden_def (__expl)
-long_double_symbol (libm, __expl, expl);