blob: 084bc0c1e282bab4d8dc81bdb8daf943e6e7c7ed [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 *
Bernhard Reutner-Fischer20f40002006-01-30 17:17:14 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Matt Kraai258bd3d2001-10-24 19:00:20 +00008 */
9
Manuel Novoa III cad53642003-03-19 09:13:01 +000010/* BB_AUDIT SUSv3 compliant */
11/* http://www.opengroup.org/onlinepubs/007904975/utilities/false.html */
Matt Kraai258bd3d2001-10-24 19:00:20 +000012
13#include <stdlib.h>
14#include "busybox.h"
15
Rob Landleydfba7412006-03-06 20:47:33 +000016int false_main(int ATTRIBUTE_UNUSED argc, char ATTRIBUTE_UNUSED **argv)
Matt Kraai258bd3d2001-10-24 19:00:20 +000017{
18 return EXIT_FAILURE;
19}