blob: 2303ba211298cc2ace4ca7f244db253a25b0b4c2 [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_perror_msg_and_die(const char *s, ...)
Eric Andersenb183dfa2001-03-19 19:24:06 +000017{
18 va_list p;
19
20 va_start(p, s);
Manuel Novoa III cad53642003-03-19 09:13:01 +000021 bb_vperror_msg(s, p);
Eric Andersenb183dfa2001-03-19 19:24:06 +000022 va_end(p);
Denis Vlasenkoa9801652006-09-07 16:20:03 +000023 if (die_sleep)
24 sleep(die_sleep);
Denis Vlasenko40920822006-10-03 20:28:06 +000025 exit(xfunc_error_retval);
Eric Andersenb183dfa2001-03-19 19:24:06 +000026}