blob: a216fb3cef5a30c298af07430a414f8396029e42 [file] [log] [blame]
#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)