summaryrefslogtreecommitdiffstats
path: root/Modules/mpzmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/mpzmodule.c')
-rw-r--r--Modules/mpzmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mpzmodule.c b/Modules/mpzmodule.c
index 0cdc84d..0cb6495 100644
--- a/Modules/mpzmodule.c
+++ b/Modules/mpzmodule.c
@@ -75,7 +75,7 @@ typedef struct {
MP_INT mpz; /* the actual number */
} mpzobject;
-staticforward PyTypeObject MPZtype;
+static PyTypeObject MPZtype;
#define is_mpzobject(v) ((v)->ob_type == &MPZtype)