source: MondoRescue/branches/3.3/mindi-busybox/coreutils/false.c@ 3621

Last change on this file since 3621 was 3621, checked in by Bruno Cornec, 7 years ago

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

File size: 800 bytes
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * Mini false implementation for busybox
4 *
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6 *
[2725]7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]8 */
9
10/* BB_AUDIT SUSv3 compliant */
[2725]11/* http://www.opengroup.org/onlinepubs/000095399/utilities/false.html */
[821]12
[3621]13/* "false --help" is special-cased to ignore --help */
14//usage:#define false_trivial_usage NOUSAGE_STR
15//usage:#define false_full_usage ""
[3232]16//usage:#define false_example_usage
17//usage: "$ false\n"
18//usage: "$ echo $?\n"
19//usage: "1\n"
20
[1765]21#include "libbb.h"
[821]22
[1765]23/* This is a NOFORK applet. Be very careful! */
24
[2725]25int false_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
26int false_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
[821]27{
28 return EXIT_FAILURE;
29}
Note: See TracBrowser for help on using the repository browser.