0
0
mirror of https://github.com/python/cpython.git synced 2024-11-22 13:28:21 +01:00
cpython/Modules/python.c
Mark Hammond fe51c6d66e Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype
for Py_Main().

Thanks to Kalle Svensson and Skip Montanaro for the patches.
2002-08-02 02:27:13 +00:00

10 lines
155 B
C

/* Minimal main program -- everything is loaded from the library */
#include "Python.h"
int
main(int argc, char **argv)
{
return Py_Main(argc, argv);
}