repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* include/errno.h [__cplusplus]: Avoid extra header magic for C++.
[glibc.git]
/
math
/
e_j0l.c
blob
1bf0a1de7329a7e8a77e82894b6d2f3d6b4d0699
1
#include <math.h>
2
#include <stdio.h>
3
#include <errno.h>
4
#include
"math_private.h"
5
6
long double
7
__ieee754_j0l
(
long double
x
)
8
{
9
fputs
(
"__ieee754_j0l not implemented
\n
"
,
stderr
);
10
__set_errno
(
ENOSYS
);
11
return
0.0
;
12
}
13
14
stub_warning
(
j0l
)
15
16
long double
17
__ieee754_y0l
(
long double
x
)
18
{
19
fputs
(
"__ieee754_y0l not implemented
\n
"
,
stderr
);
20
__set_errno
(
ENOSYS
);
21
return
0.0
;
22
}
23
24
stub_warning
(
y0l
)
25
#include <stub-tag.h>