1#include <math.h>
2
3float tgammaf(float x) {
4    return tgamma(x);
5}
6