diff options
Diffstat (limited to 'src/math/tgammaf.c')
-rw-r--r-- | src/math/tgammaf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/tgammaf.c b/src/math/tgammaf.c index b4ca51c9..4d201e48 100644 --- a/src/math/tgammaf.c +++ b/src/math/tgammaf.c @@ -4,3 +4,11 @@ float tgammaf(float x) { return tgamma(x); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |