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