Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches
cppmain.cxx
Go to the documentation of this file.
1// @(#)root/main:$Id$
2// Author: Masaharu Goto 16/05/2000
3/* /% C++ %/ */
4/***********************************************************************
5 * cint (C/C++ interpreter)
6 ************************************************************************
7 * Source file main/G__cppmain.C
8 ************************************************************************
9 * Description:
10 * C++ version main function
11 ************************************************************************
12 * Copyright(c) 1995~1999 Masaharu Goto (MXJ02154@niftyserve.or.jp)
13 *
14 * Permission to use, copy, modify and distribute this software and its
15 * documentation for non-commercial purpose is hereby granted without fee,
16 * provided that the above copyright notice appear in all copies and
17 * that both that copyright notice and this permission notice appear
18 * in supporting documentation. The author makes no
19 * representations about the suitability of this software for any
20 * purpose. It is provided "as is" without express or implied warranty.
21 ************************************************************************/
22#include <cstdio>
23
24extern "C" {
25extern void G__setothermain(int othermain);
26extern int G__main(int argc,char **argv);
27}
28
29int main(int argc,char **argv)
30{
32 return(G__main(argc,argv));
33}
int G__main(int argc, char **argv)
void G__setothermain(int othermain)
int main()