summaryrefslogtreecommitdiffstats
path: root/Modules/cPickle.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/cPickle.c')
-rw-r--r--Modules/cPickle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/cPickle.c b/Modules/cPickle.c
index ce32683..af42484 100644
--- a/Modules/cPickle.c
+++ b/Modules/cPickle.c
@@ -288,7 +288,7 @@ typedef struct Picklerobject {
#define PY_CPICKLE_FAST_LIMIT 50
#endif
-staticforward PyTypeObject Picklertype;
+static PyTypeObject Picklertype;
typedef struct Unpicklerobject {
PyObject_HEAD
@@ -313,7 +313,7 @@ typedef struct Unpicklerobject {
PyObject *find_class;
} Unpicklerobject;
-staticforward PyTypeObject Unpicklertype;
+static PyTypeObject Unpicklertype;
/* Forward decls that need the above structs */
static int save(Picklerobject *, PyObject *, int);