about summary refs log tree commit diff
path: root/math/s_log1pl.c
blob: a216fb3cef5a30c298af07430a414f8396029e42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <math.h>
#include <stdio.h>
#include <errno.h>

long double
__log1pl (long double x)
{
  fputs ("__log1pl not implemented\n", stderr);
  __set_errno (ENOSYS);
  return 0.0;
}

stub_warning (log1pl)