mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-30 12:31:53 +08:00
12 lines
190 B
C
12 lines
190 B
C
|
#include <math.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
long double
|
||
|
__ieee754_log10l (long double x)
|
||
|
{
|
||
|
fputs ("__ieee754_log10l not implemented\n", stderr);
|
||
|
return 0.0;
|
||
|
}
|
||
|
|
||
|
stub_warning (__ieee754_log10l)
|