sbase/sync.c

21 lines
239 B
C
Raw Normal View History

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