diff options
author | Guido van Rossum <guido@python.org> | 1996-12-05 21:58:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-05 21:58:58 (GMT) |
commit | da9c2710c728407f47f34635a75647c56a9ec106 (patch) | |
tree | b8248e8ba3432a2d4b4fc4034214a60b2b96cf9d /Objects/object.c | |
parent | 472c04f18f54327433c13601b25c7ea2c7071e6b (diff) | |
download | cpython-da9c2710c728407f47f34635a75647c56a9ec106.zip cpython-da9c2710c728407f47f34635a75647c56a9ec106.tar.gz cpython-da9c2710c728407f47f34635a75647c56a9ec106.tar.bz2 |
Make gcc -Wall happy
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 2bc1ba4..0af31ba 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -626,8 +626,8 @@ _Py_GetObjects(self, args) /* Hack to force loading of cobject.o */ -static PyTypeObject *cobject_hack = &PyCObject_Type; +PyTypeObject *_Py_cobject_hack = &PyCObject_Type; /* Hack to force loading of abstract.o */ -static int (*abstract_hack) FPROTO((PyObject *)) = &PyObject_Length; +int (*_Py_abstract_hack) FPROTO((PyObject *)) = &PyObject_Length; |