Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
refs/heads/master
/
.
/
src
/
math
/
lgammaf.c
blob: badb6dfec927c1fdf00a654bc088590d68002d60 [
file
] [
edit
]
#include
<math.h>
extern
int
__signgam
;
float
__lgammaf_r
(
float
,
int
*);
float
lgammaf
(
float
x
)
{
return
__lgammaf_r
(
x
,
&
__signgam
);
}