#include #include "syscall.h" void sync(void) { __syscall(SYS_sync); } #ifdef TEST int main(void) { return 0; } #endif