blob: 8831f628891288dabd2b4c799296908432defd3b [file] [log] [blame]
xf.libfc6e712025-02-07 01:54:34 -08001#include <math.h>
2#include <stdio.h>
3#include <errno.h>
4#include <math_private.h>
5
6long double
7__kernel_tanl (long double x, long double y, int iy)
8{
9 fputs ("__kernel_tanl not implemented\n", stderr);
10 __set_errno (ENOSYS);
11 return 0.0;
12}
13
14stub_warning (__kernel_tanl)