OSDN Git Service

futimens: add missing local prototype
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sat, 16 Jan 2010 18:18:38 +0000 (19:18 +0100)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sat, 16 Jan 2010 18:18:38 +0000 (19:18 +0100)
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
libc/sysdeps/linux/common/futimens.c

index 32b2139..0eaf26a 100644 (file)
@@ -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);