blob: 941eaa74b8be84bb0e2fd8573e144d7bf19f14e8 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <syscall.h> // for __syscall_4, syscall
#include <time.h> // for timespec
int utimensat(int fd, const char *path, const struct timespec times[2], int flag)
{
return syscall(utimensat, fd, path, times, flag);
}
|