blob: 5a854ec4ae403c36aa93c796b18896c0d3f598fb [file] [log] [blame]
Eric Andersenb183dfa2001-03-19 19:24:06 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenb183dfa2001-03-19 19:24:06 +00006 *
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersenb183dfa2001-03-19 19:24:06 +00008 */
9
10#include <stdio.h>
11#include <errno.h>
12#include <string.h>
13#include <stdlib.h>
14#include "libbb.h"
15
Rob Landleydfba7412006-03-06 20:47:33 +000016void bb_vperror_msg(const char *s, va_list p)
Eric Andersenb183dfa2001-03-19 19:24:06 +000017{
18 int err=errno;
19 if(s == 0) s = "";
Manuel Novoa III cad53642003-03-19 09:13:01 +000020 bb_verror_msg(s, p);
Eric Andersenb183dfa2001-03-19 19:24:06 +000021 if (*s) s = ": ";
22 fprintf(stderr, "%s%s\n", s, strerror(err));
23}