* 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

@@ -57,7 +57,7 @@
#include "modules.h"
/* The Object PyType Object defined in Object.c */
PyTypeObject Object_Type;
extern PyTypeObject Object_Type;
#define C_Object_Check(v) \
((v)->ob_type == &Object_Type) /* for type checking */