1 /* vi: set sw=4 ts=4: */
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
12 void FAST_FUNC bb_perror_msg_and_die(const char *s, ...)
17 /* Guard against "<error message>: Success" */
18 bb_verror_msg(s, p, errno ? strerror(errno) : NULL);
23 void FAST_FUNC bb_simple_perror_msg_and_die(const char *s)
25 bb_perror_msg_and_die("%s", s);