aboutsummaryrefslogtreecommitdiff
path: root/toys/false.c
blob: aa7bf0e7539ce785a08cdf5f59acc412588875c3 (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/007904975/utilities/false.html
 */

#include "toys.h"

void false_main(void)
{
	toys.exitval = 1;
}