sbase/yes.c

25 lines
348 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>
2012-04-23 16:27:40 +02:00
#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");
2014-10-02 23:46:04 +01:00
return 1; /* should not reach */
2012-04-23 16:27:40 +02:00
}