summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/pwcache.c
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-02-01 01:08:48 +0000
committerobrien <obrien@FreeBSD.org>2002-02-01 01:08:48 +0000
commit21d62aab619b3796c765c898c9caaa4179629580 (patch)
tree8179b431c3e3ff86ad8d0302e31673509ac370ce /lib/libc/gen/pwcache.c
parent675250e8eb2f1e93e8238f6611a7c3ae8d42d264 (diff)
downloadFreeBSD-src-21d62aab619b3796c765c898c9caaa4179629580.zip
FreeBSD-src-21d62aab619b3796c765c898c9caaa4179629580.tar.gz
* Remove 'register'. (some functions had 7+ register functions...)
* Fix SCM ID's.
Diffstat (limited to 'lib/libc/gen/pwcache.c')
-rw-r--r--lib/libc/gen/pwcache.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/gen/pwcache.c b/lib/libc/gen/pwcache.c
index aea7f55..dbc7c2c 100644
--- a/lib/libc/gen/pwcache.c
+++ b/lib/libc/gen/pwcache.c
@@ -34,6 +34,8 @@
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)pwcache.c 8.1 (Berkeley) 6/4/93";
#endif /* LIBC_SCCS and not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/types.h>
@@ -57,8 +59,8 @@ user_from_uid(uid, nouser)
char name[UT_NAMESIZE + 1];
} c_uid[NCACHE];
static int pwopen;
- register struct passwd *pw;
- register struct ncache *cp;
+ struct passwd *pw;
+ struct ncache *cp;
cp = c_uid + (uid & MASK);
if (cp->uid != uid || !*cp->name) {
OpenPOWER on IntegriCloud