blob: d4345a6df3ba78abdb2a2a9e025d69b84f4336c1 [file] [log] [blame]
/* vi: set sw=4 ts=4: */
/*
* false.c - Return nonzero.
*
* See http://www.opengroup.org/onlinepubs/009695399/utilities/false.html
*/
#include "toys.h"
void false_main(void)
{
toys.exitval = 1;
}