mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* Minimal main program -- everything is loaded from the library */
 | 
						|
 | 
						|
#include "Python.h"
 | 
						|
 | 
						|
extern DL_EXPORT(int) Py_Main(int, char **);
 | 
						|
 | 
						|
int
 | 
						|
main(int argc, char **argv)
 | 
						|
{
 | 
						|
	return Py_Main(argc, argv);
 | 
						|
}
 |