diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-07 12:32:12 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:29 -0400 |
commit | 59d88940d20b40495c9d63560469b3a1ee5c8bc6 (patch) | |
tree | eabb822df3fea1ee5bade888b5eca790a70048d5 /src/math/lgamma.c | |
parent | aee11e5acc2a8e56a9c8d841ac4470d9511b5008 (diff) | |
download | musl-59d88940d20b40495c9d63560469b3a1ee5c8bc6.tar.gz musl-59d88940d20b40495c9d63560469b3a1ee5c8bc6.tar.bz2 musl-59d88940d20b40495c9d63560469b3a1ee5c8bc6.tar.xz musl-59d88940d20b40495c9d63560469b3a1ee5c8bc6.zip |
move lgamma-related internal declarations to libm.h
Diffstat (limited to 'src/math/lgamma.c')
-rw-r--r-- | src/math/lgamma.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/math/lgamma.c b/src/math/lgamma.c index e25ec8e6..2fc9b478 100644 --- a/src/math/lgamma.c +++ b/src/math/lgamma.c @@ -1,7 +1,5 @@ #include <math.h> - -extern int __signgam; -double __lgamma_r(double, int *); +#include "libm.h" double lgamma(double x) { |