6dedded859
This is a remnant of the old EXIT_ days we all want to quickly forget...
24 lines
291 B
C
24 lines
291 B
C
/* See LICENSE file for copyright and license details. */
|
|
#include <stdio.h>
|
|
|
|
#include "util.h"
|
|
|
|
static void
|
|
usage(void)
|
|
{
|
|
eprintf("usage: %s\n", argv0);
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
argv0 = argv[0], argc--, argv++;
|
|
|
|
if (argc)
|
|
usage();
|
|
|
|
printf("\x1b[2J\x1b[H");
|
|
|
|
return 0;
|
|
}
|