diff options
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 */ |