xref: /haiku/src/system/libroot/posix/musl/math/tgammaf.c (revision 87f4776937505e3014251c9c3434be78ae29d7d0)
1 #include <math.h>
2 
3 float tgammaf(float x)
4 {
5 	return tgamma(x);
6 }
7