This is now the "real" main program -- it calls Py_Main(argc, argv)
which is in the library and does all the work.
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);
+}