summaryrefslogtreecommitdiffstats
path: root/toolbox/sync.c
blob: 828427634c771f3dc7bdf2c060e012ba5776603e (plain)
1
2
3
4
5
6
7
#include <unistd.h>

int sync_main(int argc, char **argv)
{
	sync();
	return 0;
}