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