Fix two bugs related to command execution:
[dockapps.git] / wmweather+ / die.c
blob8ea74a9b27ccef2588c10c99a13bbcfb824528f0
1 #include "config.h"
3 /* Copyright (C) 2002 Brad Jorsch <anomie@users.sourceforge.net>
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 of the License, or
8 (at your option) any later version.
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.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #include <stdarg.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <errno.h>
26 #include "wmweather+.h"
27 #include "die.h"
29 void vwarn(char *fmt, va_list ap){
30 fprintf(stderr, "%s: ", ProgName);
31 vfprintf(stderr, fmt, ap);
32 if (errno) fprintf(stderr, ": %s", strerror(errno));
33 fprintf(stderr, "\n");
36 void warn(char *fmt, ...){
37 va_list argv;
39 va_start(argv, fmt);
40 vwarn(fmt, argv);
41 va_end(argv);
45 void vdie(char *fmt, va_list ap){
46 vwarn(fmt, ap);
47 exit(1);
50 void die(char *fmt, ...){
51 va_list argv;
53 va_start(argv, fmt);
54 vwarn(fmt, argv);
55 va_end(argv);
56 exit(1);