aboutsummaryrefslogtreecommitdiffstats
path: root/src/vu-write-head.c
blob: 9e7c4a3f1e46c262c6475fcb86222f00c4e41e6d (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[])
{
	ENOFLAGS(!argc);

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

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