diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-04-14 14:34:26 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-04-14 14:34:26 (GMT) |
commit | 0f48d98b740110a672b62d467af192ec160e56ba (patch) | |
tree | b09bbe91aae8b34a9b4033ac410c1dd53c7bbec7 /Modules | |
parent | 15be5ec100dd4dc9718978dc3f00c83154af590e (diff) | |
download | cpython-0f48d98b740110a672b62d467af192ec160e56ba.zip cpython-0f48d98b740110a672b62d467af192ec160e56ba.tar.gz cpython-0f48d98b740110a672b62d467af192ec160e56ba.tar.bz2 |
Patch #1324762: Change --with-cxx to --with-cxx-main.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/ccpython.cc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Modules/ccpython.cc b/Modules/ccpython.cc deleted file mode 100644 index a6e97ff..0000000 --- a/Modules/ccpython.cc +++ /dev/null @@ -1,11 +0,0 @@ -/* Minimal main program -- everything is loaded from the library */ - -#include "Python.h" - -extern "C" -DL_EXPORT(int) Py_Main( int argc, char *argv[] ); - -int main( int argc, char *argv[] ) -{ - return Py_Main(argc, argv); -} |