aboutsummaryrefslogtreecommitdiff
path: root/toys/false.c
blob: 48b9d65a71989d6ee997c8ff1408a0b98e3b7c99 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* vi: set sw=4 ts=4: */
/*
 * false.c - Return nonzero.
 */

#include "toys.h"

int false_main(void)
{
	return 1;
}