utimensat.c 187 字节
Newer Older
R
Rich Felker 已提交
1 2 3 4 5
#include <sys/stat.h>
#include "syscall.h"

int utimensat(int fd, const char *path, const struct timespec times[2], int flags)
{
6
	return syscall(SYS_utimensat, fd, path, times, flags);
R
Rich Felker 已提交
7
}