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/lstAtEnd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/make/lst.lib/lstAtEnd.c') diff --git a/usr.bin/make/lst.lib/lstAtEnd.c b/usr.bin/make/lst.lib/lstAtEnd.c index 979cbb6..2a7de21 100644 --- a/usr.bin/make/lst.lib/lstAtEnd.c +++ b/usr.bin/make/lst.lib/lstAtEnd.c @@ -64,7 +64,7 @@ __RCSID("$FreeBSD$"); ReturnStatus Lst_AtEnd (l, d) Lst l; /* List to which to add the datum */ - ClientData d; /* Datum to add */ + void * d; /* Datum to add */ { register LstNode end; -- cgit v1.1