mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-17 18:40:14 +00:00
12 lines
163 B
C
12 lines
163 B
C
|
#include <math.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
long double
|
||
|
__log2l (long double x)
|
||
|
{
|
||
|
fputs ("__log2l not implemented\n", stderr);
|
||
|
return 0.0;
|
||
|
}
|
||
|
|
||
|
stub_warning (__log2l)
|