aboutsummaryrefslogtreecommitdiffstats
path: root/man7/queue.7
diff options
context:
space:
mode:
Diffstat (limited to 'man7/queue.7')
-rw-r--r--man7/queue.725
1 files changed, 15 insertions, 10 deletions
diff --git a/man7/queue.7 b/man7/queue.7
index 13f89cece0..78fb4d33ee 100644
--- a/man7/queue.7
+++ b/man7/queue.7
@@ -13,16 +13,21 @@ The
.I <sys/queue.h>
header file provides a set of macros that
define and operate on the following data structures:
-.IP * 3
-singly linked lists (SLIST)
-.IP *
-doubly linked lists (LIST)
-.IP *
-singly linked tail queues (STAILQ)
-.IP *
-doubly linked tail queues (TAILQ)
-.IP *
-doubly linked circular queues (CIRCLEQ)
+.TP
+SLIST
+singly linked lists
+.TP
+LIST
+doubly linked lists
+.TP
+STAILQ
+singly linked tail queues
+.TP
+TAILQ
+doubly linked tail queues
+.TP
+CIRCLEQ
+doubly linked circular queues
.PP
All structures support the following functionality:
.IP * 3