source: CMT/HEAD/source/cmt.cxx @ 389

Last change on this file since 389 was 389, checked in by garonne, 17 years ago

See C.L. 325

  • Property svn:eol-style set to native
File size: 688 bytes
Line 
1//-----------------------------------------------------------
2// Copyright Christian Arnault LAL-Orsay CNRS
3// arnault@lal.in2p3.fr
4// Modified by garonne@lal.in2p3.fr
5// See the complete license in cmt_license.txt "http://www.cecill.info".
6//-----------------------------------------------------------
7
8#include "cmt.h"
9
10#include <stdlib.h>
11
12/*----------------------------------------------------------*/
13int main (int argc, char* argv[])
14/*----------------------------------------------------------*/
15{
16   //cout << "argc=" << argc << endl;
17  int status = Cmt::parser (argc, argv);
18  // Extract the pure status code
19  if  (status > 255)
20    status =  status/256;
21  return (status);
22}
23
Note: See TracBrowser for help on using the repository browser.