From eda8e9da763df3fd25fc6c78602d7c79296eae6b Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 27 Feb 2011 03:48:57 -0500 Subject: implement futimens and utimensat --- src/stat/futimens.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/stat/futimens.c (limited to 'src/stat/futimens.c') diff --git a/src/stat/futimens.c b/src/stat/futimens.c new file mode 100644 index 00000000..360225b8 --- /dev/null +++ b/src/stat/futimens.c @@ -0,0 +1,6 @@ +#include + +int futimens(int fd, const struct timespec times[2]) +{ + return utimensat(fd, 0, times, 0); +} -- cgit v1.2.1