blob: b9b02adfb50676daca2606d806a071ed321ec843 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <sys/stat.h>
#include "syscall.h"
int utimensat(int fd, const char *path, const struct timespec times[2], int flags)
{
return syscall4(__NR_utimensat, fd, (long)path, (long)times, flags);
}
|