diff options
author | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2016-08-25 17:25:40 -0500 |
---|---|---|
committer | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2016-09-01 09:31:06 -0500 |
commit | 2bad840e9d4b3e714b4f20ad6b46a76e7be1d8fe (patch) | |
tree | a386736c845323bf4b79240b62b57b5120f5f59e /math/k_rem_pio2l.c | |
parent | f306ea1ada5fa0bdd87f070aa58162039676fa06 (diff) | |
download | glibc-2bad840e9d4b3e714b4f20ad6b46a76e7be1d8fe.tar.gz |
Remove unneeded stubs for k_rem_pio2l.
This is only used for the float and double variants.
Instead, just add it to the type specific list of files,
and remove all stubs, and remove the declaration from
math_private.h.
I verified x86_64, i486, ia64, m68k, and ppc64 build.
Diffstat (limited to 'math/k_rem_pio2l.c')
-rw-r--r-- | math/k_rem_pio2l.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/math/k_rem_pio2l.c b/math/k_rem_pio2l.c deleted file mode 100644 index 01bf158249..0000000000 --- a/math/k_rem_pio2l.c +++ /dev/null @@ -1,15 +0,0 @@ -#include <math.h> -#include <math_private.h> -#include <stdio.h> -#include <errno.h> - -int -__kernel_rem_pio2l (long double *x, long double *y, int e0, int nx, int prec, - const int *ipio2) -{ - fputs ("__kernel_rem_pio2l not implemented\n", stderr); - __set_errno (ENOSYS); - return 0.0; -} - -stub_warning (__kernel_rem_pio2l) |