summaryrefslogtreecommitdiffstats
path: root/Tools/freeze/winmakemakefile.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-11-02 15:44:40 (GMT)
committerGuido van Rossum <guido@python.org>1999-11-02 15:44:40 (GMT)
commitcfd76a202b6af2d989996727f7433d79c0c4b040 (patch)
tree0c07be4fe3aec0e7ecd3e535a1f1b144e585909f /Tools/freeze/winmakemakefile.py
parentf618a48d117fe98dce05253eded6caeb9a849114 (diff)
downloadcpython-cfd76a202b6af2d989996727f7433d79c0c4b040.zip
cpython-cfd76a202b6af2d989996727f7433d79c0c4b040.tar.gz
cpython-cfd76a202b6af2d989996727f7433d79c0c4b040.tar.bz2
Sjoerd Mullender:
Added some declarations to shut up compiler.
Diffstat (limited to 'Tools/freeze/winmakemakefile.py')
-rw-r--r--Tools/freeze/winmakemakefile.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/freeze/winmakemakefile.py b/Tools/freeze/winmakemakefile.py
index 62ac6ab..320504b 100644
--- a/Tools/freeze/winmakemakefile.py
+++ b/Tools/freeze/winmakemakefile.py
@@ -11,6 +11,7 @@ int WINAPI WinMain(
int nCmdShow // show state of window
)
{
+ extern int Py_FrozenMain(int, char **);
PyImport_FrozenModules = _PyImport_FrozenModules;
return Py_FrozenMain(__argc, __argv);
}