mirror of
https://github.com/python/cpython.git
synced 2024-11-22 13:28:21 +01:00
fe51c6d66e
for Py_Main(). Thanks to Kalle Svensson and Skip Montanaro for the patches.
10 lines
155 B
C
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);
|
|
}
|