aboutsummaryrefslogtreecommitdiffstats
path: root/key2root-lskeys.c
diff options
context:
space:
mode:
Diffstat (limited to 'key2root-lskeys.c')
-rw-r--r--key2root-lskeys.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/key2root-lskeys.c b/key2root-lskeys.c
new file mode 100644
index 0000000..ee1732c
--- /dev/null
+++ b/key2root-lskeys.c
@@ -0,0 +1,28 @@
+/* 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] ...\n", argv0);
+ exit(1);
+}
+
+
+int
+main(int argc, char *argv[])
+{
+ ARGBEGIN {
+ default:
+ usage();
+ } ARGEND;
+
+ return 0;
+}