summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2018-09-12 12:48:50 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2018-09-12 12:48:50 +0000
commit82b346a574c2ae0db73c965c8ffc75ebcfc8fc1c (patch)
tree8d04e8ea0b4e068461091114a785e283b4bc064c
parent5c54e1f6d18aa289fbc730548b44458add616280 (diff)
downloadmpfr-82b346a574c2ae0db73c965c8ffc75ebcfc8fc1c.tar.gz
[src/mpfr-mini-gmp.h] Removed #include lines as mpfr-mini-gmp.h is
included only in mpfr-impl.h, which already does these #include's. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@13178 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--src/mpfr-mini-gmp.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mpfr-mini-gmp.h b/src/mpfr-mini-gmp.h
index 31da14a87..16228ae03 100644
--- a/src/mpfr-mini-gmp.h
+++ b/src/mpfr-mini-gmp.h
@@ -20,16 +20,12 @@ along with the GNU MPFR Library; see the file COPYING.LESSER. If not, see
http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */
-#include <stdlib.h> /* for size_t */
-#include "gmp.h"
-
#ifndef gmp_version
extern char gmp_version[];
#endif
#ifndef GMP_NUMB_BITS
/* see https://gmplib.org/list-archives/gmp-bugs/2015-October/003755.html */
-#include <limits.h>
#define GMP_NUMB_BITS (CHAR_BIT * sizeof(mp_limb_t))
#endif