sbase/sync.c

26 lines
279 B
C
Raw Normal View History

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