summaryrefslogtreecommitdiff
path: root/math/w_expl.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_expl.c')
-rw-r--r--math/w_expl.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/math/w_expl.c b/math/w_expl.c
deleted file mode 100644
index 70096a820c..0000000000
--- a/math/w_expl.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <math.h>
-#include <stdio.h>
-#include <errno.h>
-
-long double
-__expl(long double x)
-{
- fputs ("__expl not implemented\n", stderr);
- __set_errno (ENOSYS);
- return 0.0;
-}
-
-weak_alias (__expl, expl)