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)
|
|
|
|
{
|
2011-03-20 00:16:43 -04:00
|
|
|
return syscall(SYS_utimensat, fd, path, times, flags);
|
2011-02-27 03:48:57 -05:00
|
|
|
}
|