summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-09-28 22:15:37 (GMT)
committerGuido van Rossum <guido@python.org>1998-09-28 22:15:37 (GMT)
commit93d27547d00896775fbff943028d28fbbff3f1a5 (patch)
treece3a5314e7f962abdf329c8cb09ecff831369944 /Python
parent2645241adda213a2f65c7792f4e13c0686bb0daf (diff)
downloadcpython-93d27547d00896775fbff943028d28fbbff3f1a5.zip
cpython-93d27547d00896775fbff943028d28fbbff3f1a5.tar.gz
cpython-93d27547d00896775fbff943028d28fbbff3f1a5.tar.bz2
Remove redundant definition of NEXITFUNCS.
(Reported by Jeff Rush.)
Diffstat (limited to 'Python')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
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 @@ Py_FatalError(msg)
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;