aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-write-head.c
blob: cd4b0c5289627eb2630622f2b8e7d7923be2b1b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* See LICENSE file for copyright and license details. */
#include "common.h"

USAGE("parameters ...")

int
main(int argc, char *argv[])
{
	UNOFLAGS(!argc);

	printf("%s", *argv++);
	while (*argv)
		printf(" %s", *argv++);
	printf("\n%cuivf", 0);

	efshut(stdout, "<stdout>");
	return 0;
}