]> git.ipfire.org Git - thirdparty/glibc.git/blame - math/k_tanl.c
Use private math_private.h in files in math/
[thirdparty/glibc.git] / math / k_tanl.c
CommitLineData
cccda09f
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
9277c064 4#include <math_private.h>
cccda09f
UD
5
6long double
7__kernel_tanl (long double x, long double y, int iy)
8{
9 fputs ("__kernel_tanl not implemented\n", stderr);
d705269e 10 __set_errno (ENOSYS);
cccda09f
UD
11 return 0.0;
12}
13
14stub_warning (__kernel_tanl)
f2ea0f5b 15#include <stub-tag.h>