Support binutils 2.20.
[glibc/nacl-glibc.git] / math / s_erfl.c
blobf329d58809ddf01730940c45a268c42396678c19
1 #include <math.h>
2 #include <stdio.h>
3 #include <errno.h>
5 long double
6 __erfl (long double x)
8 fputs ("__erfl not implemented\n", stderr);
9 __set_errno (ENOSYS);
10 return 0.0;
12 weak_alias (__erfl, erfl)
14 stub_warning (erfl)
16 long double
17 __erfcl (long double x)
19 fputs ("__erfcl not implemented\n", stderr);
20 __set_errno (ENOSYS);
21 return 0.0;
23 weak_alias (__erfcl, erfcl)
25 stub_warning (erfcl)
26 #include <stub-tag.h>