7 lines
75 B
C
7 lines
75 B
C
|
#include "libc/math/math.h"
|
||
|
|
||
|
float tgammaf(float x)
|
||
|
{
|
||
|
return tgamma(x);
|
||
|
}
|