diff options
author | nsz <nsz@port70.net> | 2012-03-27 22:12:20 +0200 |
---|---|---|
committer | nsz <nsz@port70.net> | 2012-03-27 22:12:20 +0200 |
commit | 1b229a2098a35795aa20bd09b8c81c5143e64277 (patch) | |
tree | 5fca9279bba2ea0ea6c3dc9cd3d832abea25607c /src/math/lgamma.c | |
parent | ad23771c32e5a125eae711ab644cf672e4896c76 (diff) | |
download | musl-1b229a2098a35795aa20bd09b8c81c5143e64277.tar.gz musl-1b229a2098a35795aa20bd09b8c81c5143e64277.tar.bz2 musl-1b229a2098a35795aa20bd09b8c81c5143e64277.tar.xz musl-1b229a2098a35795aa20bd09b8c81c5143e64277.zip |
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/lgamma.c')
-rw-r--r-- | src/math/lgamma.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/math/lgamma.c b/src/math/lgamma.c index d8b85312..e25ec8e6 100644 --- a/src/math/lgamma.c +++ b/src/math/lgamma.c @@ -1,4 +1,4 @@ -#include "libm.h" +#include <math.h> extern int __signgam; double __lgamma_r(double, int *); @@ -7,6 +7,3 @@ double lgamma(double x) { return __lgamma_r(x, &__signgam); } - -// FIXME -//weak_alias(lgamma, gamma); |