grand renaming; added copyright to some files

This commit is contained in:
Guido van Rossum 1996-05-28 22:30:17 +00:00
parent 0a8626eb88
commit 582646aecc
8 changed files with 154 additions and 37 deletions

View file

@ -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) {