Change staticforward and statichere to just use static.

Removed ^M from some line-ends.
This commit is contained in:
Fred Drake 2002-07-17 16:42:48 +00:00
parent a3cd9bbaa3
commit 50ceb68b4f
1 changed files with 2 additions and 2 deletions

View 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",