blob: b22b7ac18ed2e145a6e2e065d055ade095319318 [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))
USE_TRUE(OLDTOY(:, true, 0, TOYFLAG_NOFORK))
config TRUE
bool "true"
default y
help
Return zero.
*/
#include "toys.h"
void true_main(void)
{
return;
}