view toys/false.c @ 116:a0678c2ae9b8

Add true and false.
author Rob Landley <rob@landley.net>
date Mon, 30 Apr 2007 00:08:48 -0400
parents
children 25447caf1b4b
line wrap: on
line source

/* vi: set sw=4 ts=4: */
/*
 * false.c - Return nonzero.
 */

#include "toys.h"

int false_main(void)
{
	return 1;
}