summaryrefslogtreecommitdiff
path: root/lib/libc/stat/utimensat.c
blob: aba1865752197f46ec9d48a33ae6f32fb48e9b3e (plain)
1
2
3
4
5
6
7
8
9
10


#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);
}