blob: 388e897c0e62b58fd072d8087afb17bb3b20e060 [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 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +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/true.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 true_main(int argc, char **argv)
Matt Kraai258bd3d2001-10-24 19:00:20 +000017{
18 return EXIT_SUCCESS;
19}