diff options
Diffstat (limited to 'sysdeps/stub')
-rw-r--r-- | sysdeps/stub/s_erfl.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sysdeps/stub/s_erfl.c b/sysdeps/stub/s_erfl.c index e01bad206d..efcf490fa7 100644 --- a/sysdeps/stub/s_erfl.c +++ b/sysdeps/stub/s_erfl.c @@ -10,3 +10,13 @@ __erfl (long double x) weak_alias (__erfl, erfl) stub_warning (erfl) + +long double +__erfcl (long double x) +{ + fputs ("__erfcl not implemented\n", stderr); + return 0.0; +} +weak_alias (__erfcl, erfcl) + +stub_warning (erfcl) |