Converted repo to Git.
[vcfs.git] / mkstore.c
1 #include <stdlib.h>
2 #include <stdio.h>
3
4 #include "store.h"
5
6 int main(int argc, char **argv)
7 {
8     if(argc < 2) {
9         fprintf(stderr, "usage: mkstore DIR\n");
10         exit(1);
11     }
12     if(mkfstore(argv[1]))
13         exit(1);
14     return(0);
15 }