xref: /haiku/src/system/libroot/posix/musl/math/lgammaf.c (revision f504f61099b010fbfa94b1cc63d2e9072c7f7185)
1 #include <math.h>
2 #include "libm.h"
3 
lgammaf(float x)4 float lgammaf(float x)
5 {
6 	return __lgammaf_r(x, &__signgam);
7 }
8