aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-write-head.c
blob: 81f36b46b4b07d7f45372e2cba3e6a237fbf3027 (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 "util.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;
}