hush/sync.c
1999-10-05 16:24:54 +00:00

12 lines
204 B
C

#include "internal.h"
const char sync_usage[] = "sync\n"
"\n"
"\tWrite all buffered filesystem blocks to disk.\n";
extern int
sync_main(struct FileInfo * i, int argc, char * * argv)
{
return sync();
}