root/src/system/libroot/posix/musl/math/tgammaf.c
#include <math.h>

float tgammaf(float x)
{
        return tgamma(x);
}