frozenmain.c is now also in the library,
with entry point Py_FrozenMain().
This commit is contained in:
parent
b3afce5763
commit
a94145118a
|
@ -38,7 +38,7 @@ OBJS= \
|
|||
bltinmodule.o \
|
||||
ceval.o compile.o \
|
||||
errors.o \
|
||||
frozen.o \
|
||||
frozen.o frozenmain.o \
|
||||
getargs.o getcompiler.o getcopyright.o getmtime.o \
|
||||
getplatform.o getversion.o graminit.o \
|
||||
import.o importdl.o \
|
||||
|
|
|
@ -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;
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue