/* /% C++ %/ */ /*********************************************************************** * cint (C/C++ interpreter) ************************************************************************ * Source file main/G__cppmain.C ************************************************************************ * Description: * C++ version main function ************************************************************************ * Copyright(c) 1995~1999 Masaharu Goto (cint@pcroot.cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ #include 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)); }