blob: 3edfacd68afc9429d3f19111672dc5d91ffd118d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <math.h>
#include <stdio.h>
long double
__ieee754_atan2l (long double x, long double y)
{
fputs ("__ieee754_atan2l not implemented\n", stderr);
return 0.0;
}
stub_warning (__ieee754_atan2l)
|