]> granicus.if.org Git - python/commitdiff
Change staticforward and statichere to just use static.
authorFred Drake <fdrake@acm.org>
Wed, 17 Jul 2002 16:42:48 +0000 (16:42 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 17 Jul 2002 16:42:48 +0000 (16:42 +0000)
Removed ^M from some line-ends.

Doc/ext/noddy.c

index 51d801fcd19bb0c1d96a5c8f5b95f10cc799af3f..933ee1b8ffff332a76a7fa91b82450a141937bcb 100644 (file)
@@ -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",