Rearrange the #ifndef WITHOUT_COMPLEX so it can be picked up from
pyconfig.h.
diff --git a/Objects/complexobject.c b/Objects/complexobject.c
index 774c546..58ca6bc 100644
--- a/Objects/complexobject.c
+++ b/Objects/complexobject.c
@@ -5,11 +5,11 @@
 
 /* Submitted by Jim Hugunin */
 
-#ifndef WITHOUT_COMPLEX
-
 #include "Python.h"
 #include "structmember.h"
 
+#ifndef WITHOUT_COMPLEX
+
 /* Precisions used by repr() and str(), respectively.
 
    The repr() precision (17 significant decimal digits) is the minimal number