--- lib/utimens.c.orig 2008-09-03 08:30:31.000000000 +0000 +++ lib/utimens.c 2008-09-03 08:31:12.000000000 +0000 @@ -73,7 +73,7 @@ Return 0 on success, -1 (setting errno) on failure. */ int -futimens (int fd ATTRIBUTE_UNUSED, +tar_futimens (int fd ATTRIBUTE_UNUSED, char const *file, struct timespec const timespec[2]) { /* There's currently no interface to set file timestamps with @@ -166,5 +166,5 @@ int utimens (char const *file, struct timespec const timespec[2]) { - return futimens (-1, file, timespec); + return tar_futimens (-1, file, timespec); } --- lib/utimens.h.orig 2008-09-03 08:31:42.000000000 +0000 +++ lib/utimens.h 2008-09-03 08:31:57.000000000 +0000 @@ -1,3 +1,3 @@ #include "timespec.h" -int futimens (int, char const *, struct timespec const [2]); +int tar_futimens (int, char const *, struct timespec const [2]); int utimens (char const *, struct timespec const [2]); --- src/misc.c.orig 2008-09-03 08:32:19.000000000 +0000 +++ src/misc.c 2008-09-03 08:32:27.000000000 +0000 @@ -518,7 +518,7 @@ } #endif - return futimens (fd, file, timespec); + return tar_futimens (fd, file, timespec); } /* A description of a working directory. */