sbase/yes.c

24 lines
347 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>
#include <stdlib.h>
#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[])
{
ARGBEGIN {
default:
2012-05-15 08:32:56 -04:00
usage();
2012-04-23 10:27:40 -04:00
} ARGEND;
for (;;)
puts(argc >= 1 ? argv[0] : "y");
2014-10-02 18:46:04 -04:00
return 1; /* should not reach */
2012-04-23 10:27:40 -04:00
}