]> sourceware.org Git - glibc.git/blob - sysdeps/generic/k_tanl.c
Update.
[glibc.git] / sysdeps / generic / k_tanl.c
1 #include <math.h>
2 #include <stdio.h>
3 #include <errno.h>
4
5 long double
6 __kernel_tanl (long double x, long double y, int iy)
7 {
8 fputs ("__kernel_tanl not implemented\n", stderr);
9 __set_errno (ENOSYS);
10 return 0.0;
11 }
12
13 stub_warning (__kernel_tanl)
14 #include <stub-tag.h>
This page took 0.036746 seconds and 5 git commands to generate.