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