#include "asm/unistd_64.h" // for __NR_fadvise64 #include // for posix_fadvise #include // for off_t #include // for __syscall_4, syscall int posix_fadvise(int fd, off_t offset, off_t len, int advice) { return syscall(fadvise64, fd, offset, len, advice); }