sbase/yes.c

24 lines
358 B
C
Raw Normal View History

2012-04-23 16:27:40 +02: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 16:27:40 +02:00
int
main(int argc, char *argv[])
{
ARGBEGIN {
default:
2012-05-15 13:32:56 +01:00
usage();
2012-04-23 16:27:40 +02:00
} ARGEND;
for (;;)
puts(argc >= 1 ? argv[0] : "y");
2012-05-14 21:28:41 +01:00
return EXIT_FAILURE; /* should not reach */
2012-04-23 16:27:40 +02:00
}