1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-02 08:42:48 +00:00

Support dummy lchown() so that cpio understands 4.4 symbolic links.

This commit is contained in:
David E. O'Brien 1997-03-30 10:45:44 +00:00
parent e3740caa96
commit adfc6bdf06
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24413

View File

@ -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));