diff options
author | joerg <joerg@FreeBSD.org> | 1995-02-16 11:10:24 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1995-02-16 11:10:24 +0000 |
commit | e38a83f82fa8acf1d68f34f8e0e03d367889ef34 (patch) | |
tree | 0295742a2720dc79dab78adfc07d7e7584bdb504 /include | |
parent | cd60a37260d6e4576ca8710374f44bd5244b7d47 (diff) | |
download | FreeBSD-src-e38a83f82fa8acf1d68f34f8e0e03d367889ef34.zip FreeBSD-src-e38a83f82fa8acf1d68f34f8e0e03d367889ef34.tar.gz |
Make the argument list for the (non-Posix) fchown() consistent with
Posix chown(), and also with the man page.
Submitted by: Doug Rabson <dfr@render.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h index 2d68ad2..eb6d141 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)); |