blob: 7b570bd2d27bdbc9703b2f3f78c8aeaeb9afe9f5 [file] [log] [blame]
Rob Landley28964802008-01-19 17:08:39 -06001/* vi: set sw=4 ts=4:
2 *
Rob Landleyf2ccc2d2007-04-30 00:08:48 -04003 * false.c - Return nonzero.
Rob Landleyfece5cb2007-12-03 20:05:57 -06004 *
Rob Landley28964802008-01-19 17:08:39 -06005 * Copyright 2007 Rob Landley <rob@landley.net>
6 *
Rob Landley5c67e352007-12-11 15:41:31 -06007 * See http://www.opengroup.org/onlinepubs/009695399/utilities/false.html
Rob Landley28964802008-01-19 17:08:39 -06008
Rob Landley55928b12008-01-19 17:43:27 -06009USE_FALSE(NEWTOY(false, NULL, TOYFLAG_BIN))
Rob Landley28964802008-01-19 17:08:39 -060010
11config FALSE
12 bool "false"
13 default y
14 help
15 Return nonzero.
16*/
Rob Landleyf2ccc2d2007-04-30 00:08:48 -040017
18#include "toys.h"
19
Rob Landleyefda21c2007-11-29 18:14:37 -060020void false_main(void)
Rob Landleyf2ccc2d2007-04-30 00:08:48 -040021{
Rob Landleyefda21c2007-11-29 18:14:37 -060022 toys.exitval = 1;
Rob Landleyf2ccc2d2007-04-30 00:08:48 -040023}