ROOT  6.06/09
Reference Guide
python64.c
Go to the documentation of this file.
1 /* @(#)root/pyroot:$Id$ */
2 /* Author: Wim Lavrijsen, Apr 2008 */
3 
4 /*
5  Python main program, used to create a 64-bit python executable
6  (bin/python64) on MacOS X 64.
7  The standard python on MacOS X 64 is 32-bit only and hence cannot
8  load any 64-bit python modules, like PyROOT.
9 */
10 
11 
12 #include "Python.h"
13 
14 int main(int argc, char* argv[])
15 {
16  return Py_Main( argc, argv );
17 }
int main(int argc, char *argv[])
Definition: python64.c:14