]> git.ipfire.org Git - thirdparty/glibc.git/blame - math/e_logl.c
[BZ #157] Remove include/stub-tag.h for good.
[thirdparty/glibc.git] / math / e_logl.c
CommitLineData
1f64ac13
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
1f64ac13
UD
4
5long double
6__ieee754_logl (long double x)
7{
8 fputs ("__ieee754_logl not implemented\n", stderr);
d705269e 9 __set_errno (ENOSYS);
1f64ac13
UD
10 return 0.0;
11}
0ac5ae23 12strong_alias (__ieee754_logl, __logl_finite)
1f64ac13 13
6973fc01 14stub_warning (logl)