blob: 8e56269f7fe0b8106b76ea388fcc06eefcc91763 [file] [log] [blame]
/* true.c - Return zero.
*
* Copyright 2007 Rob Landley <rob@landley.net>
*
* See http://opengroup.org/onlinepubs/9699919799/utilities/true.html
USE_TRUE(NEWTOY(true, NULL, TOYFLAG_BIN|TOYFLAG_NOHELP|TOYFLAG_MAYFORK))
USE_TRUE(OLDTOY(:, true, TOYFLAG_NOFORK|TOYFLAG_NOHELP))
config TRUE
bool "true"
default y
help
usage: true
Return zero.
*/
#include "toys.h"
void true_main(void)
{
return;
}