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