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