mirror of
https://github.com/python/cpython.git
synced 2024-11-22 13:28:21 +01:00
14 lines
203 B
C
14 lines
203 B
C
/* Minimal main program -- everything is loaded from the library */
|
|
|
|
#include "Python.h"
|
|
|
|
extern DL_EXPORT(int) Py_Main();
|
|
|
|
int
|
|
main(argc, argv)
|
|
int argc;
|
|
char **argv;
|
|
{
|
|
return Py_Main(argc, argv);
|
|
}
|