1#include <unistd.h>
2
3int sync_main(int argc, char **argv)
4{
5	sync();
6	return 0;
7}
8