mirror of git://sourceware.org/git/glibc.git
13 lines
194 B
C
13 lines
194 B
C
|
|
#include <math.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
long double
|
||
|
|
__log1pl (long double x)
|
||
|
|
{
|
||
|
|
fputs ("__log1pl not implemented\n", stderr);
|
||
|
|
return 0.0;
|
||
|
|
}
|
||
|
|
weak_alias (__log1pl, log1pl)
|
||
|
|
|
||
|
|
stub_warning (log1pl)
|