2013-10-07 16:03:26 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2013-06-09 13:20:55 +00:00
|
|
|
#include <stdio.h>
|
2013-10-07 15:41:55 +00:00
|
|
|
#include <stdlib.h>
|
2013-06-09 13:20:55 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: sync\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
if(argc != 1)
|
|
|
|
usage();
|
|
|
|
sync();
|
|
|
|
|
2013-10-07 15:41:55 +00:00
|
|
|
return EXIT_SUCCESS;
|
2013-06-09 13:20:55 +00:00
|
|
|
}
|
|
|
|
|