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
* version.h (VERSION): Bump for 2.10 release.
[glibc.git]
/
math
/
e_lgammal_r.c
blob
1784b2663fb7dfa533736bc8f312fe765ecff72f
1
#include <math.h>
2
#include <stdio.h>
3
#include <errno.h>
4
#include
"math_private.h"
5
6
long double
7
__ieee754_lgammal_r
(
long double
x
,
int
*
signgamp
)
8
{
9
*
signgamp
=
0
;
10
fputs
(
"__ieee754_lgammal_r not implemented
\n
"
,
stderr
);
11
__set_errno
(
ENOSYS
);
12
return
0.0
;
13
}
14
15
stub_warning
(
lgammal
)
16
stub_warning
(
lgammal_r
)
17
#include <stub-tag.h>