=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/Attic/hash.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- src/usr.bin/make/Attic/hash.h 1996/06/26 05:36:31 1.2 +++ src/usr.bin/make/Attic/hash.h 1996/11/30 21:08:55 1.3 @@ -1,5 +1,5 @@ -/* $OpenBSD: hash.h,v 1.2 1996/06/26 05:36:31 deraadt Exp $ */ -/* $NetBSD: hash.h,v 1.4 1995/06/14 15:19:18 christos Exp $ */ +/* $OpenBSD: hash.h,v 1.3 1996/11/30 21:08:55 millert Exp $ */ +/* $NetBSD: hash.h,v 1.5 1996/11/06 17:59:07 christos Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. @@ -38,7 +38,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * from: @(#)hash.h 5.4 (Berkeley) 12/28/90 + * from: @(#)hash.h 8.1 (Berkeley) 6/6/93 */ /* hash.h -- @@ -50,7 +50,7 @@ #ifndef _HASH #define _HASH -/* +/* * The following defines one entry in the hash table. */ @@ -72,7 +72,7 @@ int mask; /* Used to select bits for hashing. */ } Hash_Table; -/* +/* * The following structure is used by the searching routines * to record where we are in the search. */ @@ -88,22 +88,22 @@ */ /* - * ClientData Hash_GetValue(h) - * Hash_Entry *h; + * ClientData Hash_GetValue(h) + * Hash_Entry *h; */ #define Hash_GetValue(h) ((h)->clientData) -/* - * Hash_SetValue(h, val); - * Hash_Entry *h; - * char *val; +/* + * Hash_SetValue(h, val); + * Hash_Entry *h; + * char *val; */ #define Hash_SetValue(h, val) ((h)->clientData = (ClientData) (val)) -/* - * Hash_Size(n) returns the number of words in an object of n bytes +/* + * Hash_Size(n) returns the number of words in an object of n bytes */ #define Hash_Size(n) (((n) + sizeof (int) - 1) / sizeof (int))