diff options
author | Guido van Rossum <guido@python.org> | 1996-12-05 21:58:58 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-05 21:58:58 +0000 |
commit | 3a5025602ede7bda7b6bf719afb27f3c5c1804c4 (patch) | |
tree | 1375edcfb97934785e00b1bef1a0f82b2d32803e /Objects/object.c | |
parent | 0c73f8b4cdb96f8ea4e26b271c157dc20fd6722d (diff) | |
download | cpython-3a5025602ede7bda7b6bf719afb27f3c5c1804c4.tar.gz |
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 2bc1ba4d60..0af31babaa 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; |