diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-15 01:53:37 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-15 07:28:16 -0600 |
commit | 03113da787fb1617a9c460b9ce012c9efe3c7838 (patch) | |
tree | 312d7eb8eec32b3cdbf74b59d473e30c4e4a9c54 /libmisc/linkedlist.c | |
parent | 0450e14b3a86e4448537c03253eeebf509f8909e (diff) |
libmisc: Tidy linkedlist.h
Diffstat (limited to 'libmisc/linkedlist.c')
-rw-r--r-- | libmisc/linkedlist.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libmisc/linkedlist.c b/libmisc/linkedlist.c index 5fe0977..941702f 100644 --- a/libmisc/linkedlist.c +++ b/libmisc/linkedlist.c @@ -1,4 +1,4 @@ -/* libmisc/linkedlist.c - Singly- and doubly- linked lists +/* libmisc/linkedlist.c - Intrusive singly- and doubly- linked lists * * Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com> * SPDX-License-Identifier: AGPL-3.0-or-later @@ -6,6 +6,8 @@ #include <stddef.h> /* for NULL */ +#include <libmisc/assert.h> + #include <libmisc/linkedlist.h> /* singly linked list *********************************************************/ |