summaryrefslogtreecommitdiffstats
path: root/Doc/ext/noddy.c
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-07-17 16:42:48 (GMT)
committerFred Drake <fdrake@acm.org>2002-07-17 16:42:48 (GMT)
commit50ceb68b4fa36ccda44b06c36bd375e197b2810a (patch)
treee7075b657a246533677c5880cbaf69c15a28df6f /Doc/ext/noddy.c
parenta3cd9bbaa3eee560ea4da30710f9d42b8ed4a7c7 (diff)
downloadcpython-50ceb68b4fa36ccda44b06c36bd375e197b2810a.zip
cpython-50ceb68b4fa36ccda44b06c36bd375e197b2810a.tar.gz
cpython-50ceb68b4fa36ccda44b06c36bd375e197b2810a.tar.bz2
Change staticforward and statichere to just use static.
Removed ^M from some line-ends.
Diffstat (limited to 'Doc/ext/noddy.c')
-rw-r--r--Doc/ext/noddy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/ext/noddy.c b/Doc/ext/noddy.c
index 51d801f..933ee1b 100644
--- a/Doc/ext/noddy.c
+++ b/Doc/ext/noddy.c
@@ -1,6 +1,6 @@
#include <Python.h>
-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",