view toys/sync.c @ 226:6aac63925eff

Update web pages.
author Rob Landley <rob@landley.net>
date Sat, 05 Jan 2008 18:09:49 -0600
parents 30a6db5a95c2
children d4176f3f3835
line wrap: on
line source

/* 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();
}