summaryrefslogtreecommitdiff
path: root/Modules/main.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 /Modules/main.c
parent14e0895bf961634f91390d41c0d61baa26133158 (diff)
downloadcpython-f69f0eee6531de7137142ffe7d54b9189128bd03.tar.gz
grand renaming; added copyright to some files
Diffstat (limited to 'Modules/main.c')
-rw-r--r--Modules/main.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/Modules/main.c b/Modules/main.c
index 4763a595f5..e123976a09 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -33,14 +33,9 @@ extern char *optarg;
extern int getopt(); /* PROTO((int, char **, char *)); -- not standardized */
-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() */
@@ -174,7 +169,7 @@ main(argc, argv)
if (Py_VerboseFlag ||
command == NULL && filename == NULL && isatty((int)fileno(fp)))
fprintf(stderr, "Python %s\n%s\n",
- getversion(), getcopyright());
+ Py_GetVersion(), Py_GetCopyright());
if (filename != NULL) {
if ((fp = fopen(filename, "r")) == NULL) {