Files
musl/src/stat/utimensat.c

8 lines
187 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 syscall(SYS_utimensat, fd, path, times, flags);
2011-02-27 03:48:57 -05:00
}