Finish getting rid of statichere/staticforward
diff --git a/PC/_subprocess.c b/PC/_subprocess.c
index b675b88..1ca4ece 100644
--- a/PC/_subprocess.c
+++ b/PC/_subprocess.c
@@ -53,7 +53,7 @@
 	HANDLE handle;
 } sp_handle_object;
 
-staticforward PyTypeObject sp_handle_type;
+static PyTypeObject sp_handle_type;
 
 static PyObject*
 sp_handle_new(HANDLE handle)
@@ -127,7 +127,7 @@
 
 static PyNumberMethods sp_handle_as_number;
 
-statichere PyTypeObject sp_handle_type = {
+static PyTypeObject sp_handle_type = {
 	PyObject_HEAD_INIT(NULL)
 	0,				/*ob_size*/
 	"_subprocess_handle", sizeof(sp_handle_object), 0,