2001-03-19 19:24:06 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-19 19:24:06 +00:00
|
|
|
*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-03-19 19:24:06 +00:00
|
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
void FAST_FUNC bb_perror_msg(const char *s, ...)
|
2001-03-19 19:24:06 +00:00
|
|
|
{
|
|
|
|
va_list p;
|
|
|
|
|
|
|
|
va_start(p, s);
|
2007-08-03 14:16:24 +00:00
|
|
|
/* Guard against "<error message>: Success" */
|
2007-08-15 20:07:53 +00:00
|
|
|
bb_verror_msg(s, p, errno ? strerror(errno) : NULL);
|
2001-03-19 19:24:06 +00:00
|
|
|
va_end(p);
|
|
|
|
}
|
2007-10-01 11:58:38 +00:00
|
|
|
|
2010-07-04 15:16:44 +00:00
|
|
|
void FAST_FUNC bb_perror_msg_and_die(const char *s, ...)
|
|
|
|
{
|
|
|
|
va_list p;
|
|
|
|
|
|
|
|
va_start(p, s);
|
|
|
|
/* Guard against "<error message>: Success" */
|
|
|
|
bb_verror_msg(s, p, errno ? strerror(errno) : NULL);
|
|
|
|
va_end(p);
|
|
|
|
xfunc_die();
|
|
|
|
}
|
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
void FAST_FUNC bb_simple_perror_msg(const char *s)
|
2007-10-01 11:58:38 +00:00
|
|
|
{
|
|
|
|
bb_perror_msg("%s", s);
|
|
|
|
}
|
2010-07-04 15:16:44 +00:00
|
|
|
|
|
|
|
void FAST_FUNC bb_simple_perror_msg_and_die(const char *s)
|
|
|
|
{
|
|
|
|
bb_perror_msg_and_die("%s", s);
|
|
|
|
}
|