diff options
Diffstat (limited to '')
-rw-r--r-- | libc-top-half/musl/src/math/tgammaf.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/math/tgammaf.c b/libc-top-half/musl/src/math/tgammaf.c new file mode 100644 index 0000000..b4ca51c --- /dev/null +++ b/libc-top-half/musl/src/math/tgammaf.c @@ -0,0 +1,6 @@ +#include <math.h> + +float tgammaf(float x) +{ + return tgamma(x); +} |