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