Explorar o código

futimens: add missing local prototype

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Bernhard Reutner-Fischer %!s(int64=16) %!d(string=hai) anos
pai
achega
d0a8b14169
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      libc/sysdeps/linux/common/futimens.c

+ 1 - 0
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);