blob: 055fb76ed3d352bcca03ef6bbd2f4d17c2c663c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* vi: set sw=4 ts=4: */
/*
* true.c - Return zero.
*
* See http://www.opengroup.org/onlinepubs/009695399/utilities/true.html
*/
#include "toys.h"
void true_main(void)
{
return;
}
|