android_system_core/toolbox/sync.c
The Android Open Source Project 4f6e8d7a00 Initial Contribution
2008-10-21 07:00:00 -07:00

7 lines
82 B
C

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