1 2 3 4 5 6 7 8
#define _GNU_SOURCE #include <unistd.h> #include "syscall.h" void syncfs(int fd) { __syscall(SYS_syncfs, fd); }