diff options
author | 2000-06-10 01:41:05 +0000 | |
---|---|---|
committer | 2000-06-10 01:41:05 +0000 | |
commit | aa523a8eb89f660d57227900dfdca5cad911345f (patch) | |
tree | a05406efb24c6b88312265f2604ca6f81fd26f64 /usr.bin/make/lst.lib/lstDeQueue.c | |
parent | no longer needed (diff) | |
download | wireguard-openbsd-aa523a8eb89f660d57227900dfdca5cad911345f.tar.xz wireguard-openbsd-aa523a8eb89f660d57227900dfdca5cad911345f.zip |
Clean-up patch: use `void *' instead of old-fashioned ClientData/Address.
Diffstat (limited to 'usr.bin/make/lst.lib/lstDeQueue.c')
-rw-r--r-- | usr.bin/make/lst.lib/lstDeQueue.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/lst.lib/lstDeQueue.c b/usr.bin/make/lst.lib/lstDeQueue.c index 696360388ad..a0f87b25e2f 100644 --- a/usr.bin/make/lst.lib/lstDeQueue.c +++ b/usr.bin/make/lst.lib/lstDeQueue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lstDeQueue.c,v 1.7 2000/03/26 16:21:33 espie Exp $ */ +/* $OpenBSD: lstDeQueue.c,v 1.8 2000/06/10 01:41:06 espie Exp $ */ /* $NetBSD: lstDeQueue.c,v 1.5 1996/11/06 17:59:36 christos Exp $ */ /* @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)lstDeQueue.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: lstDeQueue.c,v 1.7 2000/03/26 16:21:33 espie Exp $"; +static char rcsid[] = "$OpenBSD: lstDeQueue.c,v 1.8 2000/06/10 01:41:06 espie Exp $"; #endif #endif /* not lint */ @@ -66,11 +66,11 @@ static char rcsid[] = "$OpenBSD: lstDeQueue.c,v 1.7 2000/03/26 16:21:33 espie Ex * *----------------------------------------------------------------------- */ -ClientData +void * Lst_DeQueue(l) Lst l; { - ClientData rd; + void *rd; LstNode tln; tln = Lst_First(l); |