8800f2e762bbb6b093c84832e1cc5a974826f915
[platform/upstream/busybox.git] / coreutils / sync.c
1 #include "internal.h"
2 #include <stdio.h>
3
4 extern int
5 sync_main(int argc, char * * argv)
6 {
7     if ( **(argv+1) == '-' ) {
8         usage( "sync\nWrite all buffered filesystem blocks to disk.\n");
9     }
10     return sync();
11 }
12