Sign in
mojo
/
mojo-testing
/
bbc0e088b4a3b02a89b563db78314a89d560be7f
/
.
/
fusl
/
src
/
math
/
lgamma.c
blob: cea2fc62fadb4a161017da6e25eac4e842736011 [
file
]
#include
<math.h>
extern
int
__signgam
;
double
__lgamma_r
(
double
,
int
*);
double
lgamma
(
double
x
)
{
return
__lgamma_r
(
x
,
&
__signgam
);
}