#include "asm/unistd_64.h" // for __NR_utimensat #include // for __syscall_4, syscall #include // for timespec int utimensat(int fd, const char *path, const struct timespec times[2], int flag) { return syscall(utimensat, fd, path, times, flag); }