PIPS
main_pips.c
Go to the documentation of this file.
1 /*
2 
3  $Id: main_pips.c 23065 2016-03-02 09:05:50Z coelho $
4 
5  Copyright 1989-2016 MINES ParisTech
6 
7  This file is part of PIPS.
8 
9  PIPS is free software: you can redistribute it and/or modify it
10  under the terms of the GNU General Public License as published by
11  the Free Software Foundation, either version 3 of the License, or
12  any later version.
13 
14  PIPS is distributed in the hope that it will be useful, but WITHOUT ANY
15  WARRANTY; without even the implied warranty of MERCHANTABILITY or
16  FITNESS FOR A PARTICULAR PURPOSE.
17 
18  See the GNU General Public License for more details.
19 
20  You should have received a copy of the GNU General Public License
21  along with PIPS. If not, see <http://www.gnu.org/licenses/>.
22 
23 */
24 #ifdef HAVE_CONFIG_H
25  #include "pips_config.h"
26 #endif
27 /*
28  * This file contains the main for pips.
29  * Please, do not change anything! do any change to pips_main().
30  */
31 
32 extern char * pips_thanks(char *, char *);
33 extern int pips_main(int, char**);
34 
35 int main(int argc, char ** argv)
36 {
37  pips_thanks("pips", argv[0]);
38  return pips_main(argc, argv);
39 }
int pips_main(int, char **)
Definition: pips.c:160
int main(int argc, char **argv)
Definition: main_pips.c:35
char * pips_thanks(char *, char *)
This file contains the main for pips.
Definition: message.c:265