aboutsummaryrefslogblamecommitdiffstats
path: root/key2root-rmkey.c
blob: 1050977d1b38fc927cc4b5550a7619872dce7bb1 (plain) (tree)






























                                                                
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <stdlib.h>

#include "arg.h"


char *argv0;


static void
usage(void)
{
	fprintf(stderr, "usage: %s user key-name ...\n", argv0);
	exit(1);
}


int
main(int argc, char *argv[])
{
	ARGBEGIN {
	default:
		usage();
	} ARGEND;

	if (argc < 2)
		usage();

	return 0;
}