ia64: drop __tls_get_addr from expected ld.so plt usage
[glibc.git] / math / e_logl.c
blob7a4ea1b07f08caf60418a46a79843feb7dbe43d2
1 #include <math.h>
2 #include <stdio.h>
3 #include <errno.h>
5 long double
6 __ieee754_logl (long double x)
8 fputs ("__ieee754_logl not implemented\n", stderr);
9 __set_errno (ENOSYS);
10 return 0.0;
12 strong_alias (__ieee754_logl, __logl_finite)
14 stub_warning (logl)