summaryrefslogtreecommitdiff
path: root/sysdeps/stub/s_erfl.c
blob: e01bad206da8a56c2bdf5dc6ea0677a4414a6946 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <math.h>
#include <stdio.h>

long double
__erfl (long double x)
{
  fputs ("__erfl not implemented\n", stderr);
  return 0.0;
}
weak_alias (__erfl, erfl)

stub_warning (erfl)