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