]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/stub/e_rem_pio2l.c
Update.
[thirdparty/glibc.git] / sysdeps / stub / e_rem_pio2l.c
CommitLineData
cccda09f
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
cccda09f
UD
4
5long double
6__ieee754_rem_pio2l (long double x, long double *y)
7{
8 fputs ("__ieee754_rem_pio2l not implemented\n", stderr);
d705269e 9 __set_errno (ENOSYS);
cccda09f
UD
10 return 0.0;
11}
12
13stub_warning (__ieee754_rem_pio2l)