体验新版 GitCode,发现更多精彩内容 >>
#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);
}