blob: 929698bcc47de1168db21422d66088207a572c9e [file] [log] [blame]
#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);
}