blob: 860c331cf210b2b3747c866ad162c14dc4cfb48d [file]
/* vi: set sw=4 ts=4: */
/*
* hello.c - A hello world program.
*/
#include "toys.h"
int yes_main(void)
{
for (;;) {
int i;
for (i=0; toys.optargs[i]; i++) {
if (i) xputc(' ');
xprintf("%s", toys.optargs[i]);
}
if (!i) xputc('y');
xputc('\n');
}
return 0;
}