blob: 033d2bff4c3ba369c16a41a3c12c56a557dcb87c [file] [log] [blame]
Matt Kraai258bd3d2001-10-24 19:00:20 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini false implementation for busybox
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Matt Kraai258bd3d2001-10-24 19:00:20 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Matt Kraai258bd3d2001-10-24 19:00:20 +00008 */
9
Manuel Novoa III cad53642003-03-19 09:13:01 +000010/* BB_AUDIT SUSv3 compliant */
Bernhard Reutner-Fischercf575ca2008-05-23 12:53:18 +000011/* http://www.opengroup.org/onlinepubs/000095399/utilities/false.html */
Matt Kraai258bd3d2001-10-24 19:00:20 +000012
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000013#include "libbb.h"
Matt Kraai258bd3d2001-10-24 19:00:20 +000014
Denis Vlasenko99912ca2007-04-10 15:43:37 +000015/* This is a NOFORK applet. Be very careful! */
16
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000017int false_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000018int false_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Matt Kraai258bd3d2001-10-24 19:00:20 +000019{
20 return EXIT_FAILURE;
21}