2012-04-23 14:27:40 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "util.h"
|
|
|
|
|
2012-05-15 12:32:56 +00:00
|
|
|
static void usage(void);
|
2012-04-23 14:27:40 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
ARGBEGIN {
|
|
|
|
default:
|
2012-05-15 12:32:56 +00:00
|
|
|
usage();
|
2012-04-23 14:27:40 +00:00
|
|
|
} ARGEND;
|
|
|
|
|
2013-10-05 14:04:50 +00:00
|
|
|
for (;;)
|
|
|
|
puts(argc >= 1 ? argv[0] : "y");
|
2012-05-14 20:28:41 +00:00
|
|
|
return EXIT_FAILURE; /* should not reach */
|
2012-04-23 14:27:40 +00:00
|
|
|
}
|
2012-05-15 12:32:56 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: %s [string]\n", argv0);
|
|
|
|
}
|