Imported Upstream version 4.6.0
[debian/atlc] / src / non_gui / exit_with_msg_and_exit_code.c
1 /* atlc - arbitrary transmission line calculator, for the analysis of
2 transmission lines are directional couplers. 
3
4 Copyright (C) 2002. Dr. David Kirkby, PhD (G8WRB).
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either package_version 2
9 of the License, or (at your option) any later package_version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
19 USA.
20
21 Dr. David Kirkby, e-mail drkirkby at ntlworld.com 
22
23 */
24 #include "config.h"
25
26 #ifdef HAVE_STDLIB_H
27 #include <stdlib.h>
28 #endif
29
30 #ifdef ENABLE_MPI
31 #include <mpi.h>
32 #endif
33
34 #include "definitions.h"
35
36
37 void exit_with_msg_and_exit_code(const char *s, int exitnumber)
38 {
39   if ((NULL != s) && (s[0] != '\0')) {
40         fprintf(stderr,"%s\n",s);
41   }
42
43 #ifdef ENABLE_MPI 
44 #ifdef NEED_MPI_CODE
45   MPI_Finalize();
46 #endif
47 #endif
48
49   exit(exitnumber);
50 }