diff options
Diffstat (limited to 'sysdeps/stub/s_atanl.c')
-rw-r--r-- | sysdeps/stub/s_atanl.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sysdeps/stub/s_atanl.c b/sysdeps/stub/s_atanl.c new file mode 100644 index 0000000000..38dd6f5991 --- /dev/null +++ b/sysdeps/stub/s_atanl.c @@ -0,0 +1,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) |