diff options
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/exp10.c | 1 | ||||
-rw-r--r-- | src/math/exp10f.c | 1 | ||||
-rw-r--r-- | src/math/exp10l.c | 1 | ||||
-rw-r--r-- | src/math/lgamma_r.c | 1 | ||||
-rw-r--r-- | src/math/lgammaf_r.c | 1 | ||||
-rw-r--r-- | src/math/lgammal.c | 1 | ||||
-rw-r--r-- | src/math/remainder.c | 1 | ||||
-rw-r--r-- | src/math/remainderf.c | 1 | ||||
-rw-r--r-- | src/math/signgam.c | 1 |
9 files changed, 0 insertions, 9 deletions
diff --git a/src/math/exp10.c b/src/math/exp10.c index 9f5e3c2c..26899eba 100644 --- a/src/math/exp10.c +++ b/src/math/exp10.c @@ -1,7 +1,6 @@ #define _GNU_SOURCE #include <math.h> #include <stdint.h> -#include "libc.h" double exp10(double x) { diff --git a/src/math/exp10f.c b/src/math/exp10f.c index 7a8d4470..d009f0a8 100644 --- a/src/math/exp10f.c +++ b/src/math/exp10f.c @@ -1,7 +1,6 @@ #define _GNU_SOURCE #include <math.h> #include <stdint.h> -#include "libc.h" float exp10f(float x) { diff --git a/src/math/exp10l.c b/src/math/exp10l.c index b758ebff..f3da1a08 100644 --- a/src/math/exp10l.c +++ b/src/math/exp10l.c @@ -1,7 +1,6 @@ #define _GNU_SOURCE #include <float.h> #include <math.h> -#include "libc.h" #include "libm.h" #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 diff --git a/src/math/lgamma_r.c b/src/math/lgamma_r.c index fff565d2..f9984cd0 100644 --- a/src/math/lgamma_r.c +++ b/src/math/lgamma_r.c @@ -79,7 +79,6 @@ */ #include "libm.h" -#include "libc.h" static const double pi = 3.14159265358979311600e+00, /* 0x400921FB, 0x54442D18 */ diff --git a/src/math/lgammaf_r.c b/src/math/lgammaf_r.c index c5b43db5..3f353f19 100644 --- a/src/math/lgammaf_r.c +++ b/src/math/lgammaf_r.c @@ -14,7 +14,6 @@ */ #include "libm.h" -#include "libc.h" static const float pi = 3.1415927410e+00, /* 0x40490fdb */ diff --git a/src/math/lgammal.c b/src/math/lgammal.c index 8c798123..abbd4fc6 100644 --- a/src/math/lgammal.c +++ b/src/math/lgammal.c @@ -87,7 +87,6 @@ #define _GNU_SOURCE #include "libm.h" -#include "libc.h" #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 long double __lgammal_r(long double x, int *sg) diff --git a/src/math/remainder.c b/src/math/remainder.c index 6cd089c4..612155fe 100644 --- a/src/math/remainder.c +++ b/src/math/remainder.c @@ -1,5 +1,4 @@ #include <math.h> -#include "libc.h" double remainder(double x, double y) { diff --git a/src/math/remainderf.c b/src/math/remainderf.c index 420d3bfc..bf1d7b28 100644 --- a/src/math/remainderf.c +++ b/src/math/remainderf.c @@ -1,5 +1,4 @@ #include <math.h> -#include "libc.h" float remainderf(float x, float y) { diff --git a/src/math/signgam.c b/src/math/signgam.c index b4903a58..ee331b27 100644 --- a/src/math/signgam.c +++ b/src/math/signgam.c @@ -1,6 +1,5 @@ #include <math.h> #include "libm.h" -#include "libc.h" int __signgam = 0; |