Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4a8335b2248d934e2e40386af4f1b0495b3c173d
/
.
/
src
/
math
/
lgamma.c
blob: e25ec8e600e149fa205802a4da49704a8bb4a3e6 [
file
]
#include
<math.h>
extern
int
__signgam
;
double
__lgamma_r
(
double
,
int
*);
double
lgamma
(
double
x
)
{
return
__lgamma_r
(
x
,
&
__signgam
);
}