Commit 72f43fb7 authored by Guido van Rossum's avatar Guido van Rossum

frozenmain.c is now also in the library,

with entry point Py_FrozenMain().
parent 711ef51a
...@@ -38,7 +38,7 @@ OBJS= \ ...@@ -38,7 +38,7 @@ OBJS= \
bltinmodule.o \ bltinmodule.o \
ceval.o compile.o \ ceval.o compile.o \
errors.o \ errors.o \
frozen.o \ frozen.o frozenmain.o \
getargs.o getcompiler.o getcopyright.o getmtime.o \ getargs.o getcompiler.o getcopyright.o getmtime.o \
getplatform.o getversion.o graminit.o \ getplatform.o getversion.o graminit.o \
import.o importdl.o \ import.o importdl.o \
......
...@@ -33,14 +33,10 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -33,14 +33,10 @@ PERFORMANCE OF THIS SOFTWARE.
#include "Python.h" #include "Python.h"
/* Subroutines that live in their own file */
extern char *Py_GetVersion();
extern char *Py_GetCopyright();
/* Main program */ /* Main program */
int int
main(argc, argv) Py_FrozenMain(argc, argv)
int argc; int argc;
char **argv; char **argv;
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment