summaryrefslogtreecommitdiff
path: root/util/sbase/sync.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/sbase/sync.c')
-rw-r--r--util/sbase/sync.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/util/sbase/sync.c b/util/sbase/sync.c
new file mode 100644
index 00000000..f1b98183
--- /dev/null
+++ b/util/sbase/sync.c
@@ -0,0 +1,25 @@
+/* See LICENSE file for copyright and license details. */
+#include <unistd.h>
+
+#include "util.h"
+
+static void
+usage(void)
+{
+ eprintf("usage: %s\n", argv0);
+}
+
+int
+main(int argc, char *argv[])
+{
+ ARGBEGIN {
+ default:
+ usage();
+ } ARGEND
+
+ if (argc)
+ usage();
+ sync();
+
+ return 0;
+}