From adfc6bdf066bc4586dd88bdaef7ed044b485b1dd Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Sun, 30 Mar 1997 10:45:44 +0000 Subject: [PATCH] Support dummy lchown() so that cpio understands 4.4 symbolic links. --- contrib/cpio/extern.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contrib/cpio/extern.h b/contrib/cpio/extern.h index 3ff70cc00a01..0e1344f64e27 100644 --- a/contrib/cpio/extern.h +++ b/contrib/cpio/extern.h @@ -128,6 +128,11 @@ uid_t *getuidbyname (); gid_t *getgidbyname (); #endif +/* lchown.c */ +#ifdef HAVE_LCHOWN +int lchown P_((const char *path, uid_t owner, gid_t group)); +#endif + /* main.c */ void process_args P_((int argc, char *argv[])); void initialize_buffers P_((void));