(readname, default_index, line_size, readname):
[gnulib.git] / lib / fatal.c
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
19 #ifdef HAVE_CONFIG_H
20 # include <config.h>
21 #endif
22
23 /* FIXME: define EXIT_FAILURE */
24
25 #include "fatal.h"
26
27 #include <stdarg.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
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
40 #include "unlocked-io.h"
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
57   va_start (args, message);
58   error (EXIT_FAILURE, errnum, message, args);
59
60   /* The following code isn't reachable, but pacifies some compilers.  */
61   va_end (args);
62   abort ();
63 }