diff options
Diffstat (limited to 'src/math/lgammaf.c')
-rw-r--r-- | src/math/lgammaf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/lgammaf.c b/src/math/lgammaf.c index 2ae051d0..5ef0a905 100644 --- a/src/math/lgammaf.c +++ b/src/math/lgammaf.c @@ -5,3 +5,11 @@ float lgammaf(float x) { return __lgammaf_r(x, &__signgam); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |