summaryrefslogtreecommitdiff
path: root/usr.bin/make/hash.h
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2000-06-10 01:41:08 +0000
committerMarc Espie <espie@cvs.openbsd.org>2000-06-10 01:41:08 +0000
commit69d6992183cedaf529b0a58bb5533295806df7fc (patch)
treeed4c3f1e279bdf396098b56122e8fe183d10f770 /usr.bin/make/hash.h
parent2e26084dfa835db1e3793f42d67432d67dceb0bc (diff)
Clean-up patch: use `void *' instead of old-fashioned ClientData/Address.
Diffstat (limited to 'usr.bin/make/hash.h')
-rw-r--r--usr.bin/make/hash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/hash.h b/usr.bin/make/hash.h
index 16dc1c269fc..d43f8678b66 100644
--- a/usr.bin/make/hash.h
+++ b/usr.bin/make/hash.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: hash.h,v 1.5 2000/03/26 16:21:32 espie Exp $ */
+/* $OpenBSD: hash.h,v 1.6 2000/06/10 01:41:05 espie Exp $ */
/* $NetBSD: hash.h,v 1.5 1996/11/06 17:59:07 christos Exp $ */
/*
@@ -58,7 +58,7 @@ typedef struct Hash_Entry {
struct Hash_Entry *next; /* Used to link together all the
* entries associated with the same
* bucket. */
- ClientData clientData; /* Arbitrary piece of data associated
+ void *clientData; /* Arbitrary piece of data associated
* with key. */
unsigned namehash; /* hash value of key */
char name[1]; /* key string */
@@ -88,7 +88,7 @@ typedef struct Hash_Search {
*/
/*
- * ClientData Hash_GetValue(h)
+ * void *Hash_GetValue(h)
* Hash_Entry *h;
*/