summaryrefslogtreecommitdiff
path: root/src/stat/utimensat.c
blob: 929698bcc47de1168db21422d66088207a572c9e (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 syscall(SYS_utimensat, fd, path, times, flags);
}