]> git.ipfire.org Git - thirdparty/glibc.git/blame - math/e_jnl.c
Optimize libm
[thirdparty/glibc.git] / math / e_jnl.c
CommitLineData
b6ab06ce
UD
1#include <math.h>
2#include <stdio.h>
3#include <errno.h>
9277c064 4#include <math_private.h>
b6ab06ce
UD
5
6long double
7__ieee754_jnl (int n, long double x)
8{
9 fputs ("__ieee754_jnl not implemented\n", stderr);
10 __set_errno (ENOSYS);
11 return 0.0;
12}
0ac5ae23 13strong_alias (__ieee754_jnl, __jnl_finite)
b6ab06ce
UD
14
15stub_warning (jnl)
16
17long double
18__ieee754_ynl (int n, long double x)
19{
20 fputs ("__ieee754_ynl not implemented\n", stderr);
21 __set_errno (ENOSYS);
22 return 0.0;
23}
0ac5ae23 24strong_alias (__ieee754_ynl, __ynl_finite)
b6ab06ce
UD
25
26stub_warning (ynl)
27#include <stub-tag.h>