home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / Programming / Python2 / Python20_source / Modules / python.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  201 b   |  12 lines

  1. /* Minimal main program -- everything is loaded from the library */
  2.  
  3. #include "Python.h"
  4.  
  5. extern DL_EXPORT(int) Py_Main(int, char **);
  6.  
  7. int
  8. main(int argc, char **argv)
  9. {
  10.     return Py_Main(argc, argv);
  11. }
  12.