diff options
Diffstat (limited to 'toys/sync.c')
-rw-r--r-- | toys/sync.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/toys/sync.c b/toys/sync.c new file mode 100644 index 00000000..4918dc47 --- /dev/null +++ b/toys/sync.c @@ -0,0 +1,12 @@ +/* vi: set sw=4 ts=4: */ +/* + * sync.c - Write all pending data to disk. + */ + +#include "toys.h" + +int sync_main(void) +{ + sync(); + return 0; +} |