aboutsummaryrefslogtreecommitdiff
path: root/toys/true.c
blob: 49ec11bf4ee9f0fe1e1a2a4fad82460fefc7554c (plain)
1
2
3
4
5
6
7
8
9
10
11
/* vi: set sw=4 ts=4: */
/*
 * true.c - Return zero.
 */

#include "toys.h"

int true_main(void)
{
	return 0;
}