Remove forward static reference since it is not required
diff --git a/Modules/_iconv_codec.c b/Modules/_iconv_codec.c
index 6b10dbc..9963230 100644
--- a/Modules/_iconv_codec.c
+++ b/Modules/_iconv_codec.c
@@ -40,8 +40,6 @@
 } 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 @@
                     ((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 */