view toys/false.c @ 146:99e651512aa4

Get toysh.c to start using the option parsing logic, and some minor cleanup.
author Rob Landley <rob@landley.net>
date Fri, 19 Oct 2007 19:12:48 -0500
parents a0678c2ae9b8
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;
}