blob: 582b2caed432d880051fef07748544202bb5b7c0 [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 * true.c - Return zero.
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/true.html
Rob Landley28964802008-01-19 17:08:39 -06008
Rob Landley55928b12008-01-19 17:43:27 -06009USE_TRUE(NEWTOY(true, NULL, TOYFLAG_BIN))
10
Rob Landley28964802008-01-19 17:08:39 -060011config TRUE
12 bool "true"
13 default y
14 help
15 Return zero.
16*/
Rob Landleyf2ccc2d2007-04-30 00:08:48 -040017
18#include "toys.h"
19
Rob Landleyefda21c2007-11-29 18:14:37 -060020void true_main(void)
Rob Landleyf2ccc2d2007-04-30 00:08:48 -040021{
Rob Landleyefda21c2007-11-29 18:14:37 -060022 return;
Rob Landleyf2ccc2d2007-04-30 00:08:48 -040023}