diff options
author | Guido van Rossum <guido@python.org> | 1995-08-04 04:10:43 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-08-04 04:10:43 +0000 |
commit | b1b745723b45467ef4261bc4a0a2a05668dce4f1 (patch) | |
tree | 83728ea0a3bed9e6514398a0b3cf65390f250e6b /Python/frozenmain.c | |
parent | 8d1a40c75b15c7d6d16244e76c019dfb11d203e9 (diff) | |
download | cpython-b1b745723b45467ef4261bc4a0a2a05668dce4f1.tar.gz |
moved stuff around to resemble main.c
Diffstat (limited to 'Python/frozenmain.c')
-rw-r--r-- | Python/frozenmain.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Python/frozenmain.c b/Python/frozenmain.c index 5ad46d74c3..15e61448a7 100644 --- a/Python/frozenmain.c +++ b/Python/frozenmain.c @@ -26,17 +26,20 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "Python.h" -extern char *getenv(); +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 int Py_DebugFlag; -extern int Py_VerboseFlag; -extern int Py_SuppressPrintingFlag; - +/* For getprogramname(); set by main() */ static char *argv0; +/* Main program */ + +int main(argc, argv) int argc; char **argv; |