aboutsummaryrefslogtreecommitdiff
path: root/libbb/xfunc_die.c
blob: 73f7998e583f28bb2c70618314f25c5c626d6d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* vi: set sw=4 ts=4: */
/*
 * Utility routines.
 *
 * Copyright (C) 2008 by Denys Vlasenko <vda.linux@googlemail.com>
 *
 * Licensed under GPLv2, see file LICENSE in this source tree.
 */

/* Keeping it separate allows to NOT pull in stdio for VERY small applets.
 * Try building busybox with only "true" enabled... */

#include "libbb.h"

void (*die_func)(void);

void FAST_FUNC xfunc_die(void)
{
	if (die_func)
		die_func();
	exit(xfunc_error_retval);
}