view toys/sync.c @ 161:b4c79ab09f9e

Don't error on stat success, and create files with a sensible mode instead of 000
author Charlie Shepherd <masterdriverz@gentoo.org>
date Sat, 10 Nov 2007 10:01:28 +0000
parents ce6956dfc0cf
children 25447caf1b4b
line wrap: on
line source

/* vi: set sw=4 ts=4: */
/*
 * sync.c - Write all pending data to disk.
 */

#include "toys.h"

int sync_main(void)
{
	sync();
	return 0;
}