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