view toys/false.c @ 222:cf3b2b8a371b

Release notice.
author Rob Landley <rob@landley.net>
date Wed, 02 Jan 2008 01:40:09 -0600
parents 3227c5316260
children d4176f3f3835
line wrap: on
line source

/* vi: set sw=4 ts=4: */
/*
 * false.c - Return nonzero.
 *
 * See http://www.opengroup.org/onlinepubs/009695399/utilities/false.html
 */

#include "toys.h"

void false_main(void)
{
	toys.exitval = 1;
}