diff options
| -rw-r--r-- | man3/slist.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/slist.3 b/man3/slist.3 index 014c8080ab..f271eb6a5b 100644 --- a/man3/slist.3 +++ b/man3/slist.3 @@ -305,7 +305,7 @@ without interfering with the traversal. struct entry { int data; - SLIST_ENTRY(entry) entries; /* Singly linked List */ + SLIST_ENTRY(entry) entries; /* Singly linked list */ }; SLIST_HEAD(slisthead, entry); @@ -314,7 +314,7 @@ int main(void) { struct entry *n1, *n2, *n3, *np; - struct slisthead head; /* Singly linked List + struct slisthead head; /* Singly linked list head */ SLIST_INIT(&head); /* Initialize the queue */ |
