view toys/false.c @ 194:30a6db5a95c2

Add comments about SUSv3 specs (or lack thereof).
author Rob Landley <rob@landley.net>
date Mon, 03 Dec 2007 20:05:57 -0600
parents 25447caf1b4b
children 3227c5316260
line wrap: on
line source

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

#include "toys.h"

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