Loading [MathJax]/extensions/tex2jax.js
ROOT
6.06/09
Reference Guide
ROOT Home Page
Main Page
Related Pages
User's Classes
Namespaces
All Classes
Files
Release Notes
File List
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
bindings
pyroot
src
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
}
main
int main(int argc, char *argv[])
Definition:
python64.c:14