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;