blob: f3bb425d3229b7f9d6d7cb1ba87545957646c391 (
plain)
1
2
3
4
5
6
7
8
|
#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);
}
|