mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-10 11:20:10 +00:00
14 lines
281 B
C
14 lines
281 B
C
|
#include <math.h>
|
||
|
#include <math_private.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int
|
||
|
__kernel_rem_pio2l (long double *x, long double *y, int e0, int nx, int prec,
|
||
|
const int *ipio2)
|
||
|
{
|
||
|
fputs ("__kernel_rem_pio2l not implemented\n", stderr);
|
||
|
return 0.0;
|
||
|
}
|
||
|
|
||
|
stub_warning (__kernel_rem_pio2l)
|