aboutsummaryrefslogtreecommitdiff
path: root/toys/sync.c
blob: 4918dc47f00c81f46b4265aa2735bf89b3271be3 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;
}