blob: 7579642930b1bdd15b0c5e10cfd1b86c09b80c8e (
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/007904975/utilities/true.html
*/
#include "toys.h"
void true_main(void)
{
return;
}
|