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