1 2 3 4 5 6 7 8
#include <time.h> #include <syscall.h> int utimensat(int fd, const char *path, const struct timespec times[2], int flag) { return syscall(utimensat, fd, path, times, flag); }