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