summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-09-28 22:15:37 +0000
committerGuido van Rossum <guido@python.org>1998-09-28 22:15:37 +0000
commite7ecafc4cbd912fc3cce36d3e97df91a291d250b (patch)
treec2e9fd5fff2c0adb40fbc9e895a206313bab4f6b /Python/pythonrun.c
parent864a4400577401814a347f1530a14771f7202852 (diff)
downloadcpython-e7ecafc4cbd912fc3cce36d3e97df91a291d250b.tar.gz
Remove redundant definition of NEXITFUNCS.
(Reported by Jeff Rush.)
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 2be073bda0..2423465e01 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;