mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-28 12:13:37 +08:00
12 lines
196 B
C
12 lines
196 B
C
|
#include <math.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
long double
|
||
|
__kernel_cosl (long double x, long double y)
|
||
|
{
|
||
|
fputs ("__kernel_cosl not implemented\n", stderr);
|
||
|
return 0.0;
|
||
|
}
|
||
|
|
||
|
stub_warning (__kernel_cosl)
|