* Added 'extern' to PyTypeObject declarations in some headers.

This commit is contained in:
2003-06-09 20:07:43 +00:00
parent c7c5fd1451
commit 84bd226fa3
6 changed files with 56 additions and 57 deletions

View File

@@ -48,7 +48,7 @@ typedef struct {
} C_Material;
PyTypeObject Material_Type; /* The Material PyType Object */
extern PyTypeObject Material_Type; /* The Material PyType Object */
#define C_Material_Check(v) \
((v)->ob_type == &Material_Type) /* for type checking */