aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-02-17 16:46:12 +0000
committerUlrich Drepper <drepper@redhat.com>2001-02-17 16:46:12 +0000
commitd313277ad2a2a7a292705a5d9c9a47709e759f42 (patch)
treea206eb28552412e8b88e6474cf711f4764b1ec60 /sysdeps/generic
parentd60a7756f6da6a46f94eb786461f2b5519664e4b (diff)
downloadglibc-d313277ad2a2a7a292705a5d9c9a47709e759f42.tar
glibc-d313277ad2a2a7a292705a5d9c9a47709e759f42.tar.gz
glibc-d313277ad2a2a7a292705a5d9c9a47709e759f42.tar.bz2
glibc-d313277ad2a2a7a292705a5d9c9a47709e759f42.zip
Renamed to e_exp2.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r--sysdeps/generic/s_exp2l.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/sysdeps/generic/s_exp2l.c b/sysdeps/generic/s_exp2l.c
deleted file mode 100644
index 64ef6d3d50..0000000000
--- a/sysdeps/generic/s_exp2l.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <math.h>
-#include <stdio.h>
-#include <errno.h>
-
-long double
-__ieee754_exp2l (long double x)
-{
- fputs ("__ieee754_exp2l not implemented\n", stderr);
- __set_errno (ENOSYS);
- return 0.0;
-}
-
-stub_warning (exp2l)
-#include <stub-tag.h>