PIPS
main_gpips.c
Go to the documentation of this file.
1 /*
2 
3  $Id: main_gpips.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 gpips.
29  * Please, do not change anything! do any change to wpips_main().
30  *
31  * FC.
32  */
33 /*
34  * forked to main_gpips.c
35  * Edited by Johan GALL
36  *
37  */
38 
39 extern char * pips_thanks(char *, char *);
40 extern int gpips_main(int, char**);
41 
42 int main(int argc, char ** argv)
43 {
44  pips_thanks("gpips", argv[0]);
45  return gpips_main(argc, argv);
46 }
int gpips_main(int, char **)
int main(int argc, char **argv)
Definition: main_gpips.c:42
char * pips_thanks(char *, char *)
display pips thanks on startup, if it on a tty.
Definition: message.c:265