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