summaryrefslogtreecommitdiff
path: root/lib/libc/stat/utimensat.c
blob: d51611a3b20b3b392d981746dee16657a0e32739 (plain)
1
2
3
4
5
6
7
8
#include <time.h>
#include <syscall.h>

int utimensat(int fd, const char *path, const struct timespec times[2],
	      int flag)
{
	return syscall(utimensat, fd, path, times, flag);
}