diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-01-12 17:01:16 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-01-12 17:01:16 +0000 |
commit | ecec6a9d2da0603632fd7574068b41cf3915291a (patch) | |
tree | da840143fba9c498cb515ab3d220846747eb35e4 | |
parent | 40ec3af71b83af00876520b7f427861c539e370e (diff) |
remove headp stuff, which is unused;
diff from ray lai; ok otto
-rw-r--r-- | share/man/man3/queue.3 | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/share/man/man3/queue.3 b/share/man/man3/queue.3 index 58e490eb321..31c923a093e 100644 --- a/share/man/man3/queue.3 +++ b/share/man/man3/queue.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: queue.3,v 1.41 2006/01/12 12:05:11 jmc Exp $ +.\" $OpenBSD: queue.3,v 1.42 2006/01/12 17:01:15 jmc Exp $ .\" $NetBSD: queue.3,v 1.4 1995/07/03 00:25:36 mycroft Exp $ .\" .\" Copyright (c) 1993 The Regents of the University of California. @@ -620,7 +620,6 @@ macro should be used to check whether a list is empty. .Sh LIST EXAMPLE .Bd -literal LIST_HEAD(listhead, entry) head; -struct listhead *headp; /* List head. */ struct entry { ... LIST_ENTRY(entry) entries; /* List. */ @@ -865,7 +864,6 @@ macro should be used to check whether a tail queue is empty. .Sh TAIL QUEUE EXAMPLE .Bd -literal TAILQ_HEAD(tailhead, entry) head; -struct tailhead *headp; /* Tail queue head. */ struct entry { ... TAILQ_ENTRY(entry) entries; /* Tail queue. */ @@ -1002,7 +1000,6 @@ macro should be used to check whether a circular queue is empty. .Sh CIRCULAR QUEUE EXAMPLE .Bd -literal CIRCLEQ_HEAD(circleq, entry) head; -struct circleq *headp; /* Circular queue head. */ struct entry { ... CIRCLEQ_ENTRY(entry) entries; /* Circular queue. */ |