Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sync.c - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sync.c
blob: 6fa5b380b75fb753fea573296ac89efc47587a40 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "internal.h"

const char	sync_usage[] = "sync\n"
"\n"
"\tWrite all buffered filesystem blocks to disk.\n";

extern int
sync_main(struct FileInfo * i, int argc, char * * argv)
{
	return sync();
}