view toys/sync.c @ 170:58a97722d745

Start with public domain SHA-1 in C by Steve Reid <steve@edmweb.com> http://www.mirrors.wiretapped.net/security/cryptography/hashes/sha1/sha1.c
author Rob Landley <rob@landley.net>
date Sat, 24 Nov 2007 21:25:18 -0600
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;
}