]> git.ipfire.org Git - thirdparty/glibc.git/blame - math/s_log1pl.c
Fix trailing space.
[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}
1f64ac13
UD
12
13stub_warning (log1pl)