summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/futimens.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-01-16 19:18:38 +0100
committerCarmelo Amoroso <carmelo.amoroso@st.com>2010-01-21 12:43:14 +0100
commitbd33c42e0f3600a702b5ae23a91af61cfb379bb6 (patch)
treec8346f31a15a9ec17ca7c27f3f0ed87106cdfa55 /libc/sysdeps/linux/common/futimens.c
parent91eb1beca69470e0f50eb5fc50bb0f4613d5b128 (diff)
futimens: add missing local prototype
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> (cherry picked from commit d0a8b14169c6f01dadd07f6b4e14cc335a62f234) Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
Diffstat (limited to 'libc/sysdeps/linux/common/futimens.c')
-rw-r--r--libc/sysdeps/linux/common/futimens.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/futimens.c b/libc/sysdeps/linux/common/futimens.c
index 32b21395b..0eaf26a4c 100644
--- a/libc/sysdeps/linux/common/futimens.c
+++ b/libc/sysdeps/linux/common/futimens.c
@@ -21,6 +21,7 @@ extern int utimensat (int __fd, __const char *__path,
int __flags) __THROW;
libc_hidden_proto(utimensat)
+int futimens (int __fd, __const struct timespec __times[2]) __THROW;
int futimens (int fd, __const struct timespec ts[2])
{
return utimensat(fd, 0, ts, 0);