blob: 7ae25d625246f0bcbaf7e803c07e1bdc4de5348b [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#include <math.h>
2#include <stdio.h>
3#include <errno.h>
4
5long double
6__erfl (long double x)
7{
8 fputs ("__erfl not implemented\n", stderr);
9 __set_errno (ENOSYS);
10 return 0.0;
11}
12weak_alias (__erfl, erfl)
13
14stub_warning (erfl)
15
16long double
17__erfcl (long double x)
18{
19 fputs ("__erfcl not implemented\n", stderr);
20 __set_errno (ENOSYS);
21 return 0.0;
22}
23weak_alias (__erfcl, erfcl)
24
25stub_warning (erfcl)