summaryrefslogtreecommitdiff
path: root/Python/frozenmain.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-28 22:30:17 +0000
committerGuido van Rossum <guido@python.org>1996-05-28 22:30:17 +0000
commitf69f0eee6531de7137142ffe7d54b9189128bd03 (patch)
tree9401a3de7875e684f38b6645e89a1c12e9d87929 /Python/frozenmain.c
parent14e0895bf961634f91390d41c0d61baa26133158 (diff)
downloadcpython-f69f0eee6531de7137142ffe7d54b9189128bd03.tar.gz
grand renaming; added copyright to some files
Diffstat (limited to 'Python/frozenmain.c')
-rw-r--r--Python/frozenmain.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/Python/frozenmain.c b/Python/frozenmain.c
index 15e61448a7..17979b3ead 100644
--- a/Python/frozenmain.c
+++ b/Python/frozenmain.c
@@ -26,13 +26,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "Python.h"
-extern int Py_DebugFlag; /* For parser.c, declared in pythonrun.c */
-extern int Py_VerboseFlag; /* For import.c, declared in pythonrun.c */
-extern int Py_SuppressPrintingFlag; /* For ceval.c, declared in pythonrun.c */
-
/* Subroutines that live in their own file */
-extern char *getversion();
-extern char *getcopyright();
+extern char *Py_GetVersion();
+extern char *Py_GetCopyright();
/* For getprogramname(); set by main() */
static char *argv0;
@@ -69,7 +65,7 @@ main(argc, argv)
if (Py_VerboseFlag)
fprintf(stderr, "Python %s\n%s\n",
- getversion(), getcopyright());
+ Py_GetVersion(), Py_GetCopyright());
Py_Initialize();
PySys_SetArgv(argc, argv);