M7350/system/core/toolbox/sync.c

8 lines
82 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#include <unistd.h>
int sync_main(int argc, char **argv)
{
sync();
return 0;
}