sbase/yes.c

26 lines
313 B
C
Raw Normal View History

2012-04-23 10:27:40 -04:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
2012-04-23 10:27:40 -04:00
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [string]\n", argv0);
}
2012-04-23 10:27:40 -04:00
int
main(int argc, char *argv[])
{
const char *s;
ARGBEGIN {
default:
usage();
} ARGEND
2012-04-23 10:27:40 -04:00
s = argc ? argv[0] : "y";
for (;;)
puts(s);
2012-04-23 10:27:40 -04:00
}