summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2002-02-13 09:30:47 +0000
committerWarner Losh <imp@FreeBSD.org>2002-02-13 09:30:47 +0000
commit63195486baba5d35bd67389d060f9413da524c7d (patch)
tree688f40acf7f11f50058ba5b0bc20e683297a68e7 /lib/libc
parent492f1d9cbd6522d66ea9ed9038a42c23b98f4e3d (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/gen/pwcache.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/libc/gen/pwcache.c b/lib/libc/gen/pwcache.c
index dbc7c2ccf37d..d573c2d06b7d 100644
--- a/lib/libc/gen/pwcache.c
+++ b/lib/libc/gen/pwcache.c
@@ -49,9 +49,7 @@ __FBSDID("$FreeBSD$");
#define MASK (NCACHE - 1) /* bits to store with */
char *
-user_from_uid(uid, nouser)
- uid_t uid;
- int nouser;
+user_from_uid(uid_t uid, int nouser)
{
static struct ncache {
uid_t uid;
@@ -85,9 +83,7 @@ user_from_uid(uid, nouser)
}
char *
-group_from_gid(gid, nogroup)
- gid_t gid;
- int nogroup;
+group_from_gid(gid_t gid, int nogroup)
{
static struct ncache {
gid_t gid;