Adding the new C files too.

This commit is contained in:
Christoph Lohmann
2013-06-09 15:20:55 +02:00
parent 2c162042b1
commit b0898c605d
7 changed files with 264 additions and 0 deletions

20
sync.c Normal file
View File

@@ -0,0 +1,20 @@
#include <stdio.h>
#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;
}