summaryrefslogtreecommitdiffstats
path: root/libc/include
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-08-08 17:13:33 -0700
committerElliott Hughes <enh@google.com>2013-08-08 17:13:33 -0700
commitd0be7c8f9a06b3ca8ea7647ea35c8f9dc63f0fe1 (patch)
treea17df28516ef00c47859728418e9b7c7ef26c1ba /libc/include
parent632fd5183a611b80e009be36f881f572acc41619 (diff)
downloadbionic-d0be7c8f9a06b3ca8ea7647ea35c8f9dc63f0fe1.zip
bionic-d0be7c8f9a06b3ca8ea7647ea35c8f9dc63f0fe1.tar.gz
bionic-d0be7c8f9a06b3ca8ea7647ea35c8f9dc63f0fe1.tar.bz2
Add futimens.
Bug: 10239370 Change-Id: I518340084103dc339ef8a065d4837d6258a1381d
Diffstat (limited to 'libc/include')
-rw-r--r--libc/include/sys/stat.h3
1 files changed, 2 insertions, 1 deletions
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