diff options
Diffstat (limited to 'src/math/lgammaf.c')
-rw-r--r-- | src/math/lgammaf.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/math/lgammaf.c b/src/math/lgammaf.c index b3d996cf..badb6dfe 100644 --- a/src/math/lgammaf.c +++ b/src/math/lgammaf.c @@ -1,4 +1,4 @@ -#include "libm.h" +#include <math.h> extern int __signgam; float __lgammaf_r(float, int *); @@ -7,6 +7,3 @@ float lgammaf(float x) { return __lgammaf_r(x, &__signgam); } - -// FIXME -//weak_alias(lgammaf, gammaf); |