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(const char *s
, ...)
17 /* Guard against "<error message>: Success" */
18 bb_verror_msg(s
, p
, errno
? strerror(errno
) : NULL
);
22 void FAST_FUNC
bb_simple_perror_msg(const char *s
)
24 bb_perror_msg("%s", s
);