diff options
author | Guido van Rossum <guido@python.org> | 1995-02-18 14:53:14 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-18 14:53:14 (GMT) |
commit | 8bdd33386d041265010e803b5b45313a48ab4ace (patch) | |
tree | 9aa034cc1d823f9afbc4d1aa7775e9a5009690dd /Modules/xxmodule.c | |
parent | e9fbc0992cc1ca5badce8d8676a0b240be56d652 (diff) | |
download | cpython-8bdd33386d041265010e803b5b45313a48ab4ace.zip cpython-8bdd33386d041265010e803b5b45313a48ab4ace.tar.gz cpython-8bdd33386d041265010e803b5b45313a48ab4ace.tar.bz2 |
changes for CFM-68K mac
Diffstat (limited to 'Modules/xxmodule.c')
-rw-r--r-- | Modules/xxmodule.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/xxmodule.c b/Modules/xxmodule.c index 153bb81..ac81f77 100644 --- a/Modules/xxmodule.c +++ b/Modules/xxmodule.c @@ -38,7 +38,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Xxo objects */ #include "allobjects.h" -#include "modsupport.h" /* For getargs() etc. */ static object *ErrorObject; @@ -126,7 +125,7 @@ xxo_setattr(self, name, v) return dictinsert(self->x_attr, name, v); } -static typeobject Xxotype = { +staticforward typeobject Xxotype = { OB_HEAD_INIT(&Typetype) 0, /*ob_size*/ "xxo", /*tp_name*/ |