SF patch 517245 by Marc Recht.

Support GMP version >= 2.

Bugfix candidate.
This commit is contained in:
Guido van Rossum 2002-03-01 21:31:27 +00:00
parent 7113d9607b
commit 6f33250ef9
2 changed files with 2 additions and 1 deletions

View file

@ -62,7 +62,7 @@
#include "gmp.h"
#if __GNU_MP__ + 0 == 2
#if __GNU_MP__ + 0 >= 2
#define GMP2
#define BITS_PER_MP_LIMB mp_bits_per_limb
#else