From 4c04be64b38d9f44f4b80fdabf3ef81d88717d83 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 19 Jul 1997 19:25:33 +0000 Subject: This is now the "real" main program -- it calls Py_Main(argc, argv) which is in the library and does all the work. --- Modules/python.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Modules/python.c diff --git a/Modules/python.c b/Modules/python.c new file mode 100644 index 0000000..8a638c7 --- /dev/null +++ b/Modules/python.c @@ -0,0 +1,10 @@ +/* Minimal main program -- everything is loaded from the library */ + +extern int Py_Main(); + +main(argc, argv) + int argc; + char **argv; +{ + return Py_Main(argc, argv); +} -- cgit v0.12