summaryrefslogtreecommitdiff
path: root/src/math/lgammaf.c
diff options
context:
space:
mode:
authornsz <nsz@port70.net>2012-03-27 22:12:20 +0200
committernsz <nsz@port70.net>2012-03-27 22:12:20 +0200
commit1b229a2098a35795aa20bd09b8c81c5143e64277 (patch)
tree5fca9279bba2ea0ea6c3dc9cd3d832abea25607c /src/math/lgammaf.c
parentad23771c32e5a125eae711ab644cf672e4896c76 (diff)
downloadmusl-1b229a2098a35795aa20bd09b8c81c5143e64277.tar.gz
math: remove comment about aliasing lgamma as gamma
It is probably not worth supporting gamma. (it was already deprecated in 4.3BSD)
Diffstat (limited to 'src/math/lgammaf.c')
-rw-r--r--src/math/lgammaf.c5
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);