1 2 3 4 5 6 7
#include <stddef.h> #include <sys/stat.h> int futimens(int fd, const struct timespec times[2]) { return utimensat(fd, NULL, times, 0); }