1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* vi: set sw=4 ts=4: * * false.c - Return nonzero. * * Copyright 2007 Rob Landley <rob@landley.net> * * See http://www.opengroup.org/onlinepubs/009695399/utilities/false.html config FALSE bool "false" default y help Return nonzero. */ #include "toys.h" void false_main(void) { toys.exitval = 1; }