tgammaf.c 65 B

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