1
0
mirror of git://git.suckless.org/sbase synced 2025-02-19 05:36:53 +00:00
sbase/sync.c
FRIGN 3e7c549862 Refactor sync(1) code and manpage
and mark it as finished in README.
2015-02-08 22:08:14 +01:00

21 lines
239 B
C

/* See LICENSE file for copyright and license details. */
#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();
return 0;
}