Remove redundant definition of NEXITFUNCS.
(Reported by Jeff Rush.)
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 2be073b..2423465 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -1035,7 +1035,7 @@
 int _PyThread_Started = 0; /* Set by threadmodule.c and maybe others */
 #endif
 
-#define NEXITFUNCS 32
+/* NEXITFUNCS is defined in pystate.h */
 static void (*exitfuncs[NEXITFUNCS])();
 static int nexitfuncs = 0;