view toys/true.c @ 191:7f55c59f5122

Add chroot.
author Rob Landley <rob@landley.net>
date Mon, 03 Dec 2007 19:28:51 -0600
parents 25447caf1b4b
children 30a6db5a95c2
line wrap: on
line source

/* vi: set sw=4 ts=4: */
/*
 * true.c - Return zero.
 */

#include "toys.h"

void true_main(void)
{
	return;
}