From: Guido van Rossum Date: Fri, 4 Aug 1995 04:10:43 +0000 (+0000) Subject: moved stuff around to resemble main.c X-Git-Tag: v1.3b1~129 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47ad5e7d812c60dd755e6762f17ec8e0760be4af;p=thirdparty%2FPython%2Fcpython.git moved stuff around to resemble main.c --- diff --git a/Python/frozenmain.c b/Python/frozenmain.c index 5ad46d74c3c3..15e61448a727 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;