aboutsummaryrefslogtreecommitdiff
path: root/toys/sync.c
blob: dcb141d4c09542ba8bd48058f9f5e4f0124b444d (plain)
1
2
3
4
5
6
7
8
9
10
11
/* vi: set sw=4 ts=4: */
/*
 * sync.c - Write all pending data to disk.
 */

#include "toys.h"

void sync_main(void)
{
	sync();
}