Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful for later versions of MSVC. VS6 claims that fortran is a reserved word
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 40aaba1..dc7ce87 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -3530,7 +3530,7 @@
 
 static PyObject *
 long_getN(PyLongObject *v, void *context) {
-	return PyLong_FromLong((intptr_t)context);
+	return PyLong_FromLong((Py_intptr_t)context);
 }
 
 static PyObject *