Correct types of fields in libm-test.inc structures.
[jlayton/glibc.git] / math / k_rem_pio2l.c
1 #include <math.h>
2 #include <math_private.h>
3 #include <stdio.h>
4 #include <errno.h>
5
6 int
7 __kernel_rem_pio2l (long double *x, long double *y, int e0, int nx, int prec,
8                     const int *ipio2)
9 {
10   fputs ("__kernel_rem_pio2l not implemented\n", stderr);
11   __set_errno (ENOSYS);
12   return 0.0;
13 }
14
15 stub_warning (__kernel_rem_pio2l)