#include #include "syscall.h" int fsync(int fd) { return syscall_cp(SYS_fsync, fd); } #ifdef TEST int main(void) { return 0; } #endif