Commit bbf7630d authored by Jim Fulton's avatar Jim Fulton

Fixed type declarations.

parent 97879473
/* /*
$Id: cPickle.c,v 1.47 1997/12/07 14:25:53 jim Exp $ $Id: cPickle.c,v 1.48 1997/12/07 14:37:39 jim Exp $
Copyright Copyright
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
static char cPickle_module_documentation[] = static char cPickle_module_documentation[] =
"C implementation and optimization of the Python pickle module\n" "C implementation and optimization of the Python pickle module\n"
"\n" "\n"
"$Id: cPickle.c,v 1.47 1997/12/07 14:25:53 jim Exp $\n" "$Id: cPickle.c,v 1.48 1997/12/07 14:37:39 jim Exp $\n"
; ;
#include "Python.h" #include "Python.h"
...@@ -155,7 +155,7 @@ typedef struct { ...@@ -155,7 +155,7 @@ typedef struct {
PyObject *class_map; PyObject *class_map;
} Picklerobject; } Picklerobject;
static PyTypeObject Picklertype; staticforward PyTypeObject Picklertype;
typedef struct { typedef struct {
PyObject_HEAD PyObject_HEAD
...@@ -180,7 +180,7 @@ typedef struct { ...@@ -180,7 +180,7 @@ typedef struct {
PyObject *class_map; PyObject *class_map;
} Unpicklerobject; } Unpicklerobject;
static PyTypeObject Unpicklertype; staticforward PyTypeObject Unpicklertype;
int int
cPickle_PyMapping_HasKey(PyObject *o, PyObject *key) { cPickle_PyMapping_HasKey(PyObject *o, PyObject *key) {
...@@ -4307,7 +4307,7 @@ init_stuff(PyObject *module, PyObject *module_dict) { ...@@ -4307,7 +4307,7 @@ init_stuff(PyObject *module, PyObject *module_dict) {
void void
initcPickle() { initcPickle() {
PyObject *m, *d, *v; PyObject *m, *d, *v;
char *rev="$Revision: 1.47 $"; char *rev="$Revision: 1.48 $";
PyObject *format_version; PyObject *format_version;
PyObject *compatible_formats; PyObject *compatible_formats;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment