blob: 4f6395fa20000406cee9bc3afedd9c8d9edbe8ab [file] [log] [blame]
Manuel Novoa III cad53642003-03-19 09:13:01 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
4 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02005 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Manuel Novoa III cad53642003-03-19 09:13:01 +00006 */
7
8/* Seems silly to copyright a global variable. ;-) Oh well.
9 *
10 * At least one applet (cmp) returns a value different from the typical
Eric Andersenaff114c2004-04-14 17:51:38 +000011 * EXIT_FAILURE values (1) when an error occurs. So, make it configurable
Manuel Novoa III cad53642003-03-19 09:13:01 +000012 * by the applet. I suppose we could use a wrapper function to set it, but
13 * that too seems silly.
14 */
15
Manuel Novoa III cad53642003-03-19 09:13:01 +000016#include "libbb.h"
17
Denys Vlasenko7aa63042010-09-01 16:04:24 +020018uint8_t xfunc_error_retval = EXIT_FAILURE;