about summary refs log tree commit diff
path: root/math/s_log1pl.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_log1pl.c')
-rw-r--r--math/s_log1pl.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/math/s_log1pl.c b/math/s_log1pl.c
deleted file mode 100644
index e5db9078bf..0000000000
--- a/math/s_log1pl.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <math.h>
-#include <stdio.h>
-#include <errno.h>
-
-long double
-__log1pl (long double x)
-{
-  fputs ("__log1pl not implemented\n", stderr);
-  __set_errno (ENOSYS);
-  return 0.0;
-}
-weak_alias (__log1pl, log1pl)
-
-stub_warning (log1pl)
-#include <stub-tag.h>