diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2004-03-15 02:50:30 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2004-03-15 02:50:30 +0000 |
commit | 8b2f23f3ea191acc1b81ac0484a2dfe4952f2944 (patch) | |
tree | edef35e9e5933535f1bea2b8e0f56b23faffe7ea /usr.bin/finger/finger.h | |
parent | 8643441541fb3794d9afa416a43637d0b41375f9 (diff) |
Wall, commons, little knf
Diffstat (limited to 'usr.bin/finger/finger.h')
-rw-r--r-- | usr.bin/finger/finger.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/finger/finger.h b/usr.bin/finger/finger.h index a4c3c406f7e..3e95f0bfca1 100644 --- a/usr.bin/finger/finger.h +++ b/usr.bin/finger/finger.h @@ -1,4 +1,4 @@ -/* * $OpenBSD: finger.h,v 1.5 2003/06/25 21:10:55 deraadt Exp $*/ +/* * $OpenBSD: finger.h,v 1.6 2004/03/15 02:50:29 tedu Exp $*/ /* * Copyright (c) 1989 The Regents of the University of California. * All rights reserved. @@ -75,5 +75,5 @@ typedef struct where { #define HSIZE (1 << 8) /* hash table size */ #define HMASK (HSIZE - 1) /* hash code mask */ -PERSON *htab[HSIZE]; /* the buckets */ -PERSON *phead, *ptail; /* the linked list of all people */ +extern PERSON *htab[HSIZE]; /* the buckets */ +extern PERSON *phead, *ptail; /* the linked list of all people */ |