diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-05-24 19:08:22 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-05-24 19:08:22 +0000 |
commit | 4df78f7f655a53e7d311fa988be56246fea697c5 (patch) | |
tree | ee84c038b72182d70094faf2f594a0904a4ea089 /share | |
parent | e3bf6781ba4f025a3bf51a858222b6e4a34951c5 (diff) |
Stay within 80 column boundary.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man3/queue.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man3/queue.3 b/share/man/man3/queue.3 index 21fbd16aa0c..1457296b882 100644 --- a/share/man/man3/queue.3 +++ b/share/man/man3/queue.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: queue.3,v 1.17 2001/05/18 17:23:46 aaron Exp $ +.\" $OpenBSD: queue.3,v 1.18 2001/05/24 19:08:21 aaron 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. @@ -568,7 +568,7 @@ struct entry { ... } *n1, *n2, *np; -LIST_INIT(&head); /* Initialize the list. */ +LIST_INIT(&head); /* Initialize list. */ n1 = malloc(sizeof(struct entry)); /* Insert at the head. */ LIST_INSERT_HEAD(&head, n1, entries); @@ -811,7 +811,7 @@ struct entry { ... } *n1, *n2, *np; -TAILQ_INIT(&head); /* Initialize the queue. */ +TAILQ_INIT(&head); /* Initialize queue. */ n1 = malloc(sizeof(struct entry)); /* Insert at the head. */ TAILQ_INSERT_HEAD(&head, n1, entries); @@ -945,7 +945,7 @@ struct entry { ... } *n1, *n2, *np; -CIRCLEQ_INIT(&head); /* Initialize the circular queue. */ +CIRCLEQ_INIT(&head); /* Initialize circular queue. */ n1 = malloc(sizeof(struct entry)); /* Insert at the head. */ CIRCLEQ_INSERT_HEAD(&head, n1, entries); |