https://github.com/root-project/root
Raw File
Tip revision: 41647fe286e4d16b176c6568c479956c9aa5ae66 authored by Fons Rademakers on 13 July 2012, 13:40:04 UTC
tag patch release v5-32-04.
Tip revision: 41647fe
cppmain.cxx
// @(#)root/main:$Id$
// Author: Masaharu Goto   16/05/2000
/* /% C++ %/ */
/***********************************************************************
 * cint (C/C++ interpreter)
 ************************************************************************
 * Source file main/G__cppmain.C
 ************************************************************************
 * Description:
 *  C++ version main function
 ************************************************************************
 * Copyright(c) 1995~1999  Masaharu Goto (MXJ02154@niftyserve.or.jp)
 *
 * Permission to use, copy, modify and distribute this software and its
 * documentation for non-commercial purpose is hereby granted without fee,
 * provided that the above copyright notice appear in all copies and
 * that both that copyright notice and this permission notice appear
 * in supporting documentation.  The author makes no
 * representations about the suitability of this software for any
 * purpose.  It is provided "as is" without express or implied warranty.
 ************************************************************************/
#include <stdio.h>

extern "C" {
extern void G__setothermain(int othermain);
extern int G__main(int argc,char **argv);
}

int main(int argc,char **argv)
{
   G__setothermain(0);
   return(G__main(argc,argv));
}
back to top