Sign in
mojo
/
mojo
/
6fd33f6a3d027e12c5bfcbd8c43fe01c15b76e92
/
.
/
fusl
/
src
/
math
/
lgammaf.c
blob: a4786c546aeb97c2face7a0882517ee452d5d63e [
file
] [
log
] [
blame
]
#include
<math.h>
extern
int
__signgam
;
float
__lgammaf_r
(
float
,
int
*);
float
lgammaf
(
float
x
)
{
return
__lgammaf_r
(
x
,
&
__signgam
);
}