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