about summary refs log tree commit diff
path: root/sysdeps/stub
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/stub')
-rw-r--r--sysdeps/stub/e_log10l.c11
-rw-r--r--sysdeps/stub/e_logl.c11
-rw-r--r--sysdeps/stub/e_sqrtl.c11
-rw-r--r--sysdeps/stub/s_atanl.c12
-rw-r--r--sysdeps/stub/s_log1pl.c12
5 files changed, 57 insertions, 0 deletions
diff --git a/sysdeps/stub/e_log10l.c b/sysdeps/stub/e_log10l.c
new file mode 100644
index 0000000000..0e8cdcaaa9
--- /dev/null
+++ b/sysdeps/stub/e_log10l.c
@@ -0,0 +1,11 @@
+#include <math.h>
+#include <stdio.h>
+
+long double
+__ieee754_log10l (long double x)
+{
+  fputs ("__ieee754_log10l not implemented\n", stderr);
+  return 0.0;
+}
+
+stub_warning (__ieee754_log10l)
diff --git a/sysdeps/stub/e_logl.c b/sysdeps/stub/e_logl.c
new file mode 100644
index 0000000000..b8357543b0
--- /dev/null
+++ b/sysdeps/stub/e_logl.c
@@ -0,0 +1,11 @@
+#include <math.h>
+#include <stdio.h>
+
+long double
+__ieee754_logl (long double x)
+{
+  fputs ("__ieee754_logl not implemented\n", stderr);
+  return 0.0;
+}
+
+stub_warning (__ieee754_logl)
diff --git a/sysdeps/stub/e_sqrtl.c b/sysdeps/stub/e_sqrtl.c
new file mode 100644
index 0000000000..88a7668330
--- /dev/null
+++ b/sysdeps/stub/e_sqrtl.c
@@ -0,0 +1,11 @@
+#include <math.h>
+#include <stdio.h>
+
+long double
+__ieee754_sqrtl (long double x)
+{
+  fputs ("__ieee754_sqrtl not implemented\n", stderr);
+  return 0.0;
+}
+
+stub_warning (__ieee754_sqrtl)
diff --git a/sysdeps/stub/s_atanl.c b/sysdeps/stub/s_atanl.c
new file mode 100644
index 0000000000..38dd6f5991
--- /dev/null
+++ b/sysdeps/stub/s_atanl.c
@@ -0,0 +1,12 @@
+#include <math.h>
+#include <stdio.h>
+
+long double
+__atanl (long double x)
+{
+  fputs ("__atanl not implemented\n", stderr);
+  return 0.0;
+}
+weak_alias (__atanl, atanl)
+
+stub_warning (atanl)
diff --git a/sysdeps/stub/s_log1pl.c b/sysdeps/stub/s_log1pl.c
new file mode 100644
index 0000000000..07282482f3
--- /dev/null
+++ b/sysdeps/stub/s_log1pl.c
@@ -0,0 +1,12 @@
+#include <math.h>
+#include <stdio.h>
+
+long double
+__log1pl (long double x)
+{
+  fputs ("__log1pl not implemented\n", stderr);
+  return 0.0;
+}
+weak_alias (__log1pl, log1pl)
+
+stub_warning (log1pl)