From f69f0eee6531de7137142ffe7d54b9189128bd03 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 28 May 1996 22:30:17 +0000 Subject: grand renaming; added copyright to some files --- Modules/main.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'Modules/main.c') 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) { -- cgit v1.2.1