summaryrefslogtreecommitdiffstats
path: root/Python/frozenmain.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-07-19 21:59:47 (GMT)
committerGuido van Rossum <guido@python.org>1997-07-19 21:59:47 (GMT)
commita94145118a41cc09807b85da7324778340a5ed35 (patch)
treec6d0384e1df4c959d085afc4eaab8c809c1625d3 /Python/frozenmain.c
parentb3afce576362ee5004817f48827c6677b87079b6 (diff)
downloadcpython-a94145118a41cc09807b85da7324778340a5ed35.zip
cpython-a94145118a41cc09807b85da7324778340a5ed35.tar.gz
cpython-a94145118a41cc09807b85da7324778340a5ed35.tar.bz2
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 d693401..d5a398b 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;
{