platform_system_core/toolbox/sync.c
2009-03-03 19:32:55 -08:00

7 lines
82 B
C

#include <unistd.h>
int sync_main(int argc, char **argv)
{
sync();
return 0;
}