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

#include "toys.h"

void sync_main(void)
{
	sync();
}