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