sbase/sync.c

23 lines
278 B
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
2013-06-09 13:20:55 +00:00
#include <stdio.h>
#include <stdlib.h>
2013-06-09 13:20:55 +00:00
#include <unistd.h>
2013-06-09 13:20:55 +00:00
#include "util.h"
static void
usage(void)
{
eprintf("usage: sync\n");
}
int
2014-04-18 10:51:18 +00:00
main(int argc, char *argv[])
2013-06-09 13:20:55 +00:00
{
if (argc != 1)
2013-06-09 13:20:55 +00:00
usage();
sync();
2014-10-02 22:46:04 +00:00
return 0;
2013-06-09 13:20:55 +00:00
}