]> git.ipfire.org Git - thirdparty/glibc.git/blame - math/e_jnl.c
Use private math_private.h in files in math/
[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}
13
14stub_warning (jnl)
15
16long double
17__ieee754_ynl (int n, long double x)
18{
19 fputs ("__ieee754_ynl not implemented\n", stderr);
20 __set_errno (ENOSYS);
21 return 0.0;
22}
23
24stub_warning (ynl)
25#include <stub-tag.h>