repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
math: remove comment about aliasing lgamma as gamma
[musl.git]
/
src
/
math
/
lgamma.c
blob
e25ec8e600e149fa205802a4da49704a8bb4a3e6
1
#include <math.h>
2
3
extern
int
__signgam
;
4
double
__lgamma_r
(
double
,
int
*);
5
6
double
lgamma
(
double
x
)
7
{
8
return
__lgamma_r
(
x
, &
__signgam
);
9
}