Files
musl/src/stat/utimensat.c

8 lines
201 B
C
Raw Normal View History

2011-02-27 03:48:57 -05:00
#include <sys/stat.h>
#include "syscall.h"
int utimensat(int fd, const char *path, const struct timespec times[2], int flags)
{
return syscall4(__NR_utimensat, fd, (long)path, (long)times, flags);
}