Initial revision

This commit is contained in:
Eric Andersen
1999-10-05 16:24:54 +00:00
commit cc8ed39b24
113 changed files with 24504 additions and 0 deletions

11
coreutils/sync.c Normal file
View File

@ -0,0 +1,11 @@
#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();
}