blob: c44f8823aeed266c29a28405ae8d4af297d7fb9a (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <time.h> // for timespec
#define __BITS_STAT_H_
#include <bits/stat.h> // for timespec
#include <sys/stat.h> // for utimensat, futimens
int futimens(int fd, const struct timespec times[2])
{
return utimensat(fd, "", times, 0);
}
|