summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-01-20 22:32:56 +0000
committerGuido van Rossum <guido@python.org>2000-01-20 22:32:56 +0000
commit369cec6d822dc14be4c3c68ba97f4652d5eaea2c (patch)
tree374e995c270c7e390ca024ab132ff829bcbfaf08 /Python/pythonrun.c
parentca6fb5a12131d9eec3d5ef12394826d375c11464 (diff)
downloadcpython-369cec6d822dc14be4c3c68ba97f4652d5eaea2c.tar.gz
The rest of the changes by Trent Mick and Dale Nagata for warning-free
compilation on NT Alpha. Mostly added casts etc.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 4e1632078e..0814038ee2 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -72,6 +72,10 @@ static void initsigs Py_PROTO((void));
static void call_sys_exitfunc Py_PROTO((void));
static void call_ll_exitfuncs Py_PROTO((void));
+#ifdef Py_TRACE_REFS
+int _Py_AskYesNo(char *prompt);
+#endif
+
int Py_DebugFlag; /* Needed by parser.c */
int Py_VerboseFlag; /* Needed by import.c */
int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */