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



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