blob: d4345a6df3ba78abdb2a2a9e025d69b84f4336c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* 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;
}
|