diff options
Diffstat (limited to 'coreutils/sync.c')
-rw-r--r-- | coreutils/sync.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/coreutils/sync.c b/coreutils/sync.c new file mode 100644 index 000000000..6fa5b380b --- /dev/null +++ b/coreutils/sync.c | |||
@@ -0,0 +1,11 @@ | |||
1 | #include "internal.h" | ||
2 | |||
3 | const char sync_usage[] = "sync\n" | ||
4 | "\n" | ||
5 | "\tWrite all buffered filesystem blocks to disk.\n"; | ||
6 | |||
7 | extern int | ||
8 | sync_main(struct FileInfo * i, int argc, char * * argv) | ||
9 | { | ||
10 | return sync(); | ||
11 | } | ||