From: Fred Drake Date: Wed, 17 Jul 2002 16:42:48 +0000 (+0000) Subject: Change staticforward and statichere to just use static. X-Git-Tag: v2.3c1~4967 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50ceb68b4fa36ccda44b06c36bd375e197b2810a;p=python Change staticforward and statichere to just use static. Removed ^M from some line-ends. --- diff --git a/Doc/ext/noddy.c b/Doc/ext/noddy.c index 51d801fcd1..933ee1b8ff 100644 --- a/Doc/ext/noddy.c +++ b/Doc/ext/noddy.c @@ -1,6 +1,6 @@ #include -staticforward PyTypeObject noddy_NoddyType; +static PyTypeObject noddy_NoddyType; typedef struct { PyObject_HEAD @@ -29,7 +29,7 @@ noddy_noddy_dealloc(PyObject* self) PyObject_Del(self); } -statichere PyTypeObject noddy_NoddyType = { +static PyTypeObject noddy_NoddyType = { PyObject_HEAD_INIT(NULL) 0, "Noddy",