Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Utility routines. |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 8 | */ |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 9 | #include "libbb.h" |
| 10 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 11 | void FAST_FUNC bb_herror_msg(const char *s, ...) |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 12 | { |
| 13 | va_list p; |
| 14 | |
| 15 | va_start(p, s); |
Denis Vlasenko | ab9c44b | 2007-08-15 20:07:53 +0000 | [diff] [blame] | 16 | bb_verror_msg(s, p, hstrerror(h_errno)); |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 17 | va_end(p); |
| 18 | } |
Denys Vlasenko | 7e1bb4b | 2010-07-04 17:16:44 +0200 | [diff] [blame] | 19 | |
| 20 | void FAST_FUNC bb_herror_msg_and_die(const char *s, ...) |
| 21 | { |
| 22 | va_list p; |
| 23 | |
| 24 | va_start(p, s); |
| 25 | bb_verror_msg(s, p, hstrerror(h_errno)); |
| 26 | va_end(p); |
| 27 | xfunc_die(); |
| 28 | } |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 29 | |
| 30 | void FAST_FUNC bb_simple_herror_msg(const char *s) |
| 31 | { |
| 32 | bb_herror_msg("%s", s); |
| 33 | } |
| 34 | |
| 35 | void FAST_FUNC bb_simple_herror_msg_and_die(const char *s) |
| 36 | { |
| 37 | bb_herror_msg_and_die("%s", s); |
| 38 | } |