summaryrefslogtreecommitdiffstats
path: root/share/man/man3/queue.3
diff options
context:
space:
mode:
authormpi <mpi@openbsd.org>2017-01-12 16:28:49 +0000
committermpi <mpi@openbsd.org>2017-01-12 16:28:49 +0000
commitf21864e450950dfbc7facc6f76f73ddbeb2a01db (patch)
tree6ae1b0bd2840b7249a85dca2c56748a965d52caf /share/man/man3/queue.3
parentInline strlen() call to reduce/simplify code. (diff)
downloadwireguard-openbsd-f21864e450950dfbc7facc6f76f73ddbeb2a01db.tar.xz
wireguard-openbsd-f21864e450950dfbc7facc6f76f73ddbeb2a01db.zip
TAILQ_CONCAT() takes 3 arguments.
Diffstat (limited to 'share/man/man3/queue.3')
-rw-r--r--share/man/man3/queue.36
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man3/queue.3 b/share/man/man3/queue.3
index 467a95ebb74..8d70125bcfb 100644
--- a/share/man/man3/queue.3
+++ b/share/man/man3/queue.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: queue.3,v 1.64 2016/03/14 22:39:23 jmc Exp $
+.\" $OpenBSD: queue.3,v 1.65 2017/01/12 16:28:49 mpi 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.
@@ -30,7 +30,7 @@
.\"
.\" @(#)queue.3 8.1 (Berkeley) 12/13/93
.\"
-.Dd $Mdocdate: March 14 2016 $
+.Dd $Mdocdate: January 12 2017 $
.Dt SLIST_INIT 3
.Os
.Sh NAME
@@ -205,7 +205,7 @@
.Fn TAILQ_REMOVE "TAILQ_HEAD *head" "struct TYPE *elm" "FIELDNAME"
.Ft void
.Fn TAILQ_REPLACE "TAILQ_HEAD *head" "struct TYPE *elm" "struct TYPE *elm2" "FIELDNAME"
-.Fn TAILQ_CONCAT "TAILQ_HEAD *head1" "TAILQ_HEAD *head2"
+.Fn TAILQ_CONCAT "TAILQ_HEAD *head1" "TAILQ_HEAD *head2" "FIELDNAME"
.Sh DESCRIPTION
These macros define and operate on four types of data structures:
singly-linked lists, simple queues, lists, and tail queues.