posix: Sync glob with gnulib [BZ #1062]
[glibc.git] / math / e_rem_pio2l.c
blob2ea873bbabf0ac55128610211ff883eda478b494
1 #include <math.h>
2 #include <stdio.h>
3 #include <errno.h>
4 #include <math_private.h>
6 int32_t
7 __ieee754_rem_pio2l (long double x, long double *y)
9 fputs ("__ieee754_rem_pio2l not implemented\n", stderr);
10 __set_errno (ENOSYS);
11 return 0;
14 stub_warning (__ieee754_rem_pio2l)