diff options
Diffstat (limited to 'sysdeps/stub/e_atan2l.c')
-rw-r--r-- | sysdeps/stub/e_atan2l.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysdeps/stub/e_atan2l.c b/sysdeps/stub/e_atan2l.c new file mode 100644 index 0000000000..3edfacd68a --- /dev/null +++ b/sysdeps/stub/e_atan2l.c @@ -0,0 +1,11 @@ +#include <math.h> +#include <stdio.h> + +long double +__ieee754_atan2l (long double x, long double y) +{ + fputs ("__ieee754_atan2l not implemented\n", stderr); + return 0.0; +} + +stub_warning (__ieee754_atan2l) |