blob: ed7dcea7100ac0fde0277207b162f6bfd3aa0637 [file] [log] [blame]
#include <sys/stat.h>
int futimens(int fd, const struct timespec times[2]) {
return utimensat(fd, 0, times, 0);
}