From 65a98afaedffb34df44fe7938b9f87f8dbce1cd6 Mon Sep 17 00:00:00 2001 From: will Date: Sat, 2 Dec 2000 20:24:42 +0000 Subject: There's also no point in #typedef'ing void/char pointers. Accordingly, rip out ClientData/Address pointers and use standard types. Obtained from: OpenBSD --- usr.bin/make/lst.lib/lstInt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/make/lst.lib/lstInt.h') diff --git a/usr.bin/make/lst.lib/lstInt.h b/usr.bin/make/lst.lib/lstInt.h index 6bbc240..86dcb2b 100644 --- a/usr.bin/make/lst.lib/lstInt.h +++ b/usr.bin/make/lst.lib/lstInt.h @@ -54,7 +54,7 @@ typedef struct ListNode { * node may not be deleted until count * goes to 0 */ flags:8; /* Node status flags */ - ClientData datum; /* datum associated with this element */ + void * datum; /* datum associated with this element */ } *ListNode; /* * Flags required for synchronization -- cgit v1.1