Add a testcase for BZ #14716
[glibc.git] / math / e_log10l.c
blob2c7ff72c2ccf26783a63a193a0a7088f97c7fd76
1 #include <math.h>
2 #include <stdio.h>
3 #include <errno.h>
5 long double
6 __ieee754_log10l (long double x)
8 fputs ("__ieee754_log10l not implemented\n", stderr);
9 __set_errno (ENOSYS);
10 return 0.0;
12 strong_alias (__ieee754_log10l, __log10l_finite)
14 stub_warning (log10l)
15 #include <stub-tag.h>