Home | History | Annotate | Download | only in toolbox
      1 #include <unistd.h>
      2 
      3 int sync_main(int argc, char **argv)
      4 {
      5 	sync();
      6 	return 0;
      7 }
      8