From 99909befb61c5544ae14d81e2acbe170769c2eef Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Thu, 16 Feb 1995 11:10:24 +0000 Subject: [PATCH] Make the argument list for the (non-Posix) fchown() consistent with Posix chown(), and also with the man page. Submitted by: Doug Rabson --- include/unistd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/unistd.h b/include/unistd.h index 2d68ad27ae1c..eb6d141aba6f 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -112,7 +112,7 @@ int encrypt __P((char *, int)); void endusershell __P((void)); int exect __P((const char *, char * const *, char * const *)); int fchdir __P((int)); -int fchown __P((int, int, int)); +int fchown __P((int, uid_t, gid_t)); int fsync __P((int)); int ftruncate __P((int, off_t)); int getdomainname __P((char *, int));