blob: 89f892961f0525a543a2354f97f0e6590699c25d [file] [log] [blame]
Matt Kraai258bd3d2001-10-24 19:00:20 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini true 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 */
11/* http://www.opengroup.org/onlinepubs/007904975/utilities/true.html */
Matt Kraai258bd3d2001-10-24 19:00:20 +000012
Denys Vlasenkode5edad2015-04-21 16:00:41 +020013/* "true --help" is special-cased to ignore --help */
14//usage:#define true_trivial_usage NOUSAGE_STR
15//usage:#define true_full_usage ""
Pere Orga34425382011-03-31 14:43:25 +020016//usage:#define true_example_usage
17//usage: "$ true\n"
18//usage: "$ echo $?\n"
19//usage: "0\n"
20
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000021#include "libbb.h"
Matt Kraai258bd3d2001-10-24 19:00:20 +000022
Denis Vlasenko99912ca2007-04-10 15:43:37 +000023/* This is a NOFORK applet. Be very careful! */
24
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000025int true_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000026int true_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Matt Kraai258bd3d2001-10-24 19:00:20 +000027{
28 return EXIT_SUCCESS;
29}