Framework to test IFUNC implementations on target
[glibc.git] / math / e_atanhl.c
blob26c52e7936c2fcd4c1728d88df7e63a7f0c2d0bb
1 #include <math.h>
2 #include <stdio.h>
3 #include <errno.h>
5 long double
6 __ieee754_atanhl (long double x)
8 fputs ("__ieee754_atanhl not implemented\n", stderr);
9 __set_errno (ENOSYS);
10 return 0.0;
12 strong_alias (__ieee754_atanhl, __atanhl_finite)
14 stub_warning (__ieee754_atanhl)
15 #include <stub-tag.h>