]> git.ipfire.org Git - thirdparty/glibc.git/blame - math/k_rem_pio2l.c
Moved to csu/errno-loc.c.
[thirdparty/glibc.git] / math / k_rem_pio2l.c
CommitLineData
cccda09f
UD
1#include <math.h>
2#include <math_private.h>
3#include <stdio.h>
d705269e 4#include <errno.h>
cccda09f
UD
5
6int
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);
d705269e 11 __set_errno (ENOSYS);
cccda09f
UD
12 return 0.0;
13}
14
15stub_warning (__kernel_rem_pio2l)
f2ea0f5b 16#include <stub-tag.h>