4333
|
1 /* Fatal exits for noninteractive utilities |
|
2 |
|
3 Copyright (C) 2001, 2003 Free Software Foundation, Inc. |
|
4 |
|
5 This program is free software; you can redistribute it and/or modify |
|
6 it under the terms of the GNU General Public License as published by |
|
7 the Free Software Foundation; either version 2, or (at your option) |
|
8 any later version. |
|
9 |
|
10 This program is distributed in the hope that it will be useful, |
|
11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 GNU General Public License for more details. |
|
14 |
|
15 You should have received a copy of the GNU General Public License along |
|
16 with this program; if not, write to the Free Software Foundation, |
|
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
|
18 |
2449
|
19 #ifdef HAVE_CONFIG_H |
|
20 # include <config.h> |
|
21 #endif |
|
22 |
3618
|
23 /* FIXME: define EXIT_FAILURE */ |
|
24 |
4642
|
25 #include "fatal.h" |
2449
|
26 |
4642
|
27 #include <stdarg.h> |
|
28 #include <stdio.h> |
|
29 #include <stdlib.h> |
|
30 #include <string.h> |
2449
|
31 |
|
32 #ifdef _LIBC |
|
33 # define program_name program_invocation_name |
|
34 #else /* not _LIBC */ |
|
35 /* The calling program should define program_name and set it to the |
|
36 name of the executing program. */ |
|
37 extern char *program_name; |
|
38 #endif |
|
39 |
3618
|
40 #include "unlocked-io.h" |
2449
|
41 |
|
42 /* Like error, but always exit with EXIT_FAILURE. */ |
|
43 |
|
44 void |
|
45 fatal (int errnum, const char *message, ...) |
|
46 { |
|
47 va_list args; |
|
48 |
|
49 if (error_print_progname) |
|
50 (*error_print_progname) (); |
|
51 else |
|
52 { |
|
53 fflush (stdout); |
|
54 fprintf (stderr, "%s: ", program_name); |
|
55 } |
|
56 |
4642
|
57 va_start (args, message); |
2449
|
58 error (EXIT_FAILURE, errnum, message, args); |
4642
|
59 |
|
60 /* The following code isn't reachable, but pacifies some compilers. */ |
2449
|
61 va_end (args); |
4642
|
62 abort (); |
2449
|
63 } |