From: Bernhard Reutner-Fischer Date: Sat, 16 Jan 2010 18:18:38 +0000 (+0100) Subject: futimens: add missing local prototype X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=bd33c42e0f3600a702b5ae23a91af61cfb379bb6;p=uclinux-h8%2FuClibc.git futimens: add missing local prototype Signed-off-by: Bernhard Reutner-Fischer (cherry picked from commit d0a8b14169c6f01dadd07f6b4e14cc335a62f234) Signed-off-by: Carmelo Amoroso --- 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);