diff options
author | Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> | 2017-08-22 11:14:15 -0300 |
---|---|---|
committer | Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> | 2017-08-22 15:24:37 -0300 |
commit | 453a493d2b61b1eb3cadee544e6791dab45c167a (patch) | |
tree | 453436245402946d979cf1c368d053afa664f92c /math | |
parent | f2f048a533bd490013820a8037a3043c0737e216 (diff) | |
download | glibc-453a493d2b61b1eb3cadee544e6791dab45c167a.zip glibc-453a493d2b61b1eb3cadee544e6791dab45c167a.tar.gz glibc-453a493d2b61b1eb3cadee544e6791dab45c167a.tar.bz2 |
Remove duplicate inclusion of header math-svid-compat.h
The header math-svid-compat.h has been unintentionally included twice in
the wrappers for the remainder functions. This patch removes the
duplicate inclusions.
* math/w_remainder_compat.c: Remove duplicate inclusion of
math-svid-compat.h.
* math/w_remainderf_compat.c: Likewise.
* math/w_remainderl_compat.c: Likewise.
Diffstat (limited to 'math')
-rw-r--r-- | math/w_remainder_compat.c | 1 | ||||
-rw-r--r-- | math/w_remainderf_compat.c | 1 | ||||
-rw-r--r-- | math/w_remainderl_compat.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/math/w_remainder_compat.c b/math/w_remainder_compat.c index 27fa14f..6bf5d1f 100644 --- a/math/w_remainder_compat.c +++ b/math/w_remainder_compat.c @@ -19,7 +19,6 @@ #include <math.h> #include <math_private.h> #include <math-svid-compat.h> -#include <math-svid-compat.h> /* wrapper remainder */ diff --git a/math/w_remainderf_compat.c b/math/w_remainderf_compat.c index 627b4f1..3ffefde 100644 --- a/math/w_remainderf_compat.c +++ b/math/w_remainderf_compat.c @@ -19,7 +19,6 @@ #include <math.h> #include <math_private.h> #include <math-svid-compat.h> -#include <math-svid-compat.h> /* wrapper remainderf */ diff --git a/math/w_remainderl_compat.c b/math/w_remainderl_compat.c index 9858475..b01b0b1 100644 --- a/math/w_remainderl_compat.c +++ b/math/w_remainderl_compat.c @@ -19,7 +19,6 @@ #include <math.h> #include <math_private.h> #include <math-svid-compat.h> -#include <math-svid-compat.h> /* wrapper remainderl */ |