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

USAGE("(X Y Z | Y)")

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

	if (argc == 1)
		printf("%s\n", argv[0]);
	else if (argc == 3)
		printf("%s %s %s\n", argv[0], argv[1], argv[2]);
	else
		usage();

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