summaryrefslogtreecommitdiffstats
path: root/Modules/ccpython.cc
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/ccpython.cc')
-rw-r--r--Modules/ccpython.cc11
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);
-}