blob: fc6a5364a219389c8b8bb1d8a54764fec4f64074 [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 */
Manuel Novoa III cad53642003-03-19 09:13:01 +00007/* Seems silly to copyright a global variable. ;-) Oh well.
8 *
9 * At least one applet (cmp) returns a value different from the typical
Eric Andersenaff114c2004-04-14 17:51:38 +000010 * EXIT_FAILURE values (1) when an error occurs. So, make it configurable
Manuel Novoa III cad53642003-03-19 09:13:01 +000011 * by the applet. I suppose we could use a wrapper function to set it, but
12 * that too seems silly.
13 */
Manuel Novoa III cad53642003-03-19 09:13:01 +000014#include "libbb.h"
15
Denys Vlasenko7aa63042010-09-01 16:04:24 +020016uint8_t xfunc_error_retval = EXIT_FAILURE;