projects
/
kopensolaris-gnu
/
glibc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
update from main archive 961008
[kopensolaris-gnu/glibc.git]
/
sysdeps
/
stub
/
e_jnl.c
1
#include <math.h>
2
#include <stdio.h>
3
4
long double
5
__ieee754_jnl (int n, long double x)
6
{
7
fputs ("__ieee754_jnl not implemented\n", stderr);
8
return 0.0;
9
}
10
11
stub_warning (__ieee754_jnl)
12
13
long double
14
__ieee754_ynl (int n, long double x)
15
{
16
fputs ("__ieee754_ynl not implemented\n", stderr);
17
return 0.0;
18
}
19
20
stub_warning (__ieee754_ynl)