]> granicus.if.org Git - python/commitdiff
Remove forward static reference since it is not required
authorNeal Norwitz <nnorwitz@gmail.com>
Tue, 4 Feb 2003 20:46:50 +0000 (20:46 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Tue, 4 Feb 2003 20:46:50 +0000 (20:46 +0000)
Modules/_iconv_codec.c

index 6b10dbcd60489cb49ab38331c8cce4a42ed607a9..99632306c46626584f5bd1c0c82473d933b89cde 100644 (file)
@@ -40,8 +40,6 @@ typedef struct {
 } iconvcodecObject;
 PyDoc_STRVAR(iconvcodec_doc, "iconvcodec object");
 
-staticforward PyTypeObject iconvcodec_Type;
-
 /* does the chosen internal encoding require
  * byteswapping to get native endianness?
  * 0=no, 1=yes, -1=unknown */
@@ -608,7 +606,7 @@ iconvcodec_repr(PyObject *self)
                     ((iconvcodecObject *)self)->encoding);
 }
 
-statichere PyTypeObject iconvcodec_Type = {
+static PyTypeObject iconvcodec_Type = {
     PyObject_HEAD_INIT(&PyType_Type)
     0,                              /* Number of items for varobject */
     "iconvcodec",                   /* Name of this type */