diff options
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/object.c b/Objects/object.c index 19f9a7a..e9251cc 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -8,10 +8,10 @@ #endif #ifdef Py_REF_DEBUG -DL_IMPORT(long) _Py_RefTotal; +long _Py_RefTotal; #endif -DL_IMPORT(int) Py_DivisionWarningFlag; +int Py_DivisionWarningFlag; /* Object allocation routines used by NEWOBJ and NEWVAROBJ macros. These are used by the individual routines for object creation. |