mirror of
https://github.com/python/cpython.git
synced 2024-11-26 03:14:27 +08:00
faa209d6bd
(patch #100805 by Peter Schneider-Kamp)
12 lines
189 B
C
12 lines
189 B
C
/* Minimal main program -- everything is loaded from the library */
|
|
|
|
#include "Python.h"
|
|
|
|
extern DL_EXPORT(int) Py_Main();
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
return Py_Main(argc, argv);
|
|
}
|