aboutsummaryrefslogtreecommitdiffstats
path: root/key2root-rmkey.c
diff options
context:
space:
mode:
Diffstat (limited to 'key2root-rmkey.c')
-rw-r--r--key2root-rmkey.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/key2root-rmkey.c b/key2root-rmkey.c
new file mode 100644
index 0000000..1050977
--- /dev/null
+++ b/key2root-rmkey.c
@@ -0,0 +1,31 @@
+/* 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;
+}