summaryrefslogtreecommitdiff
path: root/sysdeps/stub/k_cosl.c
blob: 3e6c9688f0dcb39ac50fd6625e339988231db7ec (plain)
1
2
3
4
5
6
7
8
9
10
11
#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)