Add a testcase for BZ #14716
[glibc.git] / math / e_jnl.c
blob059b1db6bcf78634c168f3973e09eda2d0497bfa
1 #include <math.h>
2 #include <stdio.h>
3 #include <errno.h>
4 #include <math_private.h>
6 long double
7 __ieee754_jnl (int n, long double x)
9 fputs ("__ieee754_jnl not implemented\n", stderr);
10 __set_errno (ENOSYS);
11 return 0.0;
13 strong_alias (__ieee754_jnl, __jnl_finite)
15 stub_warning (jnl)
17 long double
18 __ieee754_ynl (int n, long double x)
20 fputs ("__ieee754_ynl not implemented\n", stderr);
21 __set_errno (ENOSYS);
22 return 0.0;
24 strong_alias (__ieee754_ynl, __ynl_finite)
26 stub_warning (ynl)
27 #include <stub-tag.h>