7 lines
116 B
C
7 lines
116 B
C
|
#include <sys/stat.h>
|
||
|
|
||
|
int futimens(int fd, const struct timespec times[2])
|
||
|
{
|
||
|
return utimensat(fd, 0, times, 0);
|
||
|
}
|