summaryrefslogtreecommitdiff
path: root/Python/frozenmain.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-07-19 21:59:47 +0000
committerGuido van Rossum <guido@python.org>1997-07-19 21:59:47 +0000
commit72f43fb7441f1d3ab357f8b069ce8e276ce59579 (patch)
tree8223e3787e3aa8c64cab0e7375ef30719fef5be3 /Python/frozenmain.c
parent711ef51a8900048199db42d31a2476bcaa6c69b8 (diff)
downloadcpython-72f43fb7441f1d3ab357f8b069ce8e276ce59579.tar.gz
frozenmain.c is now also in the library,
with entry point Py_FrozenMain().
Diffstat (limited to 'Python/frozenmain.c')
-rw-r--r--Python/frozenmain.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/Python/frozenmain.c b/Python/frozenmain.c
index d693401188..d5a398b075 100644
--- a/Python/frozenmain.c
+++ b/Python/frozenmain.c
@@ -33,14 +33,10 @@ PERFORMANCE OF THIS SOFTWARE.
#include "Python.h"
-/* Subroutines that live in their own file */
-extern char *Py_GetVersion();
-extern char *Py_GetCopyright();
-
/* Main program */
int
-main(argc, argv)
+Py_FrozenMain(argc, argv)
int argc;
char **argv;
{