futimens (3) Linux Manual Page
NAME utimensat, futimens – change file timestamps with nanosecond precision SYNOPSIS #include <fcntl.h> /* Definition of AT_* constants */ #include <sys/stat.h> int utimensat(int dirfd, const char *pathname, const struct timespec times[2], int flags); int futimens(int fd, const struct timespec times[2]); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): utimensat(): Since glibc 2.10: _POSIX_C_SOURCE >= 200809L Before glibc…
