diff options
author | Szabolcs Nagy <nsz@port70.net> | 2013-09-05 14:03:10 +0000 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2013-09-05 14:03:10 +0000 |
commit | afa2aaccea6e9f8c55809abb6471dc9aaa402711 (patch) | |
tree | a26cadb973ab5763273821235bde6974dd792448 /src/math/lgamma_r.c | |
parent | 101e6012856918440b5d7474739c3fc22a8d3b85 (diff) | |
download | musl-afa2aaccea6e9f8c55809abb6471dc9aaa402711.tar.gz musl-afa2aaccea6e9f8c55809abb6471dc9aaa402711.tar.xz musl-afa2aaccea6e9f8c55809abb6471dc9aaa402711.zip |
math: remove libc.h include from libm.h
libc.h is only for weak_alias so include it directly where it is used
Diffstat (limited to 'src/math/lgamma_r.c')
-rw-r--r-- | src/math/lgamma_r.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/lgamma_r.c b/src/math/lgamma_r.c index e3ed1733..82e296f5 100644 --- a/src/math/lgamma_r.c +++ b/src/math/lgamma_r.c @@ -79,6 +79,7 @@ */ #include "libm.h" +#include "libc.h" static const double two52= 4.50359962737049600000e+15, /* 0x43300000, 0x00000000 */ |