Move int_true_divide next to the other division routines.
diff --git a/Objects/intobject.c b/Objects/intobject.c
index eaf869f..775213c 100644
--- a/Objects/intobject.c
+++ b/Objects/intobject.c
@@ -533,6 +533,12 @@
 }
 
 static PyObject *
+int_true_divide(PyObject *v, PyObject *w)
+{
+	return PyFloat_Type.tp_as_number->nb_true_divide(v, w);
+}
+
+static PyObject *
 int_mod(PyIntObject *x, PyIntObject *y)
 {
 	long xi, yi;
@@ -768,12 +774,6 @@
 }
 
 static PyObject *
-int_true_divide(PyObject *v, PyObject *w)
-{
-	return PyFloat_Type.tp_as_number->nb_true_divide(v, w);
-}
-
-static PyObject *
 int_int(PyIntObject *v)
 {
 	Py_INCREF(v);