xf.li | bfc6e71 | 2025-02-07 01:54:34 -0800 | [diff] [blame^] | 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) |