From d0be7c8f9a06b3ca8ea7647ea35c8f9dc63f0fe1 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 8 Aug 2013 17:13:33 -0700 Subject: Add futimens. Bug: 10239370 Change-Id: I518340084103dc339ef8a065d4837d6258a1381d --- libc/include/sys/stat.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libc/include') diff --git a/libc/include/sys/stat.h b/libc/include/sys/stat.h index c7715a3..10627b9 100644 --- a/libc/include/sys/stat.h +++ b/libc/include/sys/stat.h @@ -168,7 +168,8 @@ extern int renameat(int olddirfd, const char *oldpath, int newdirfd, const char # define UTIME_NOW ((1l << 30) - 1l) # define UTIME_OMIT ((1l << 30) - 2l) -extern int utimensat (int fd, const char *path, const struct timespec times[2], int flags); +extern int utimensat(int fd, const char *path, const struct timespec times[2], int flags); +extern int futimens(int fd, const struct timespec times[2]); __END_DECLS -- cgit v1.1