master xplshn/aruu / cmd / posix / false.c
 1/* See LICENSE file for copyright and license details. */
 2
 3
 4// ?man false: return unsuccessful exit status
 5// ?man exit with status 1 representing failure
 6int
 7main(void)
 8{
 9	return 1;
10}