diff options
-rw-r--r-- | kern/hlist.h | 4 | ||||
-rw-r--r-- | kern/slist.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/kern/hlist.h b/kern/hlist.h index eec05bb5..e105cb85 100644 --- a/kern/hlist.h +++ b/kern/hlist.h @@ -28,6 +28,10 @@ #include <kern/llsync.h> #include <kern/macros.h> +struct hlist; + +struct hlist_node; + /* * Static list initializer. */ diff --git a/kern/slist.h b/kern/slist.h index dd6a2d79..c0dcb087 100644 --- a/kern/slist.h +++ b/kern/slist.h @@ -28,6 +28,10 @@ #include <kern/macros.h> #include <kern/slist_types.h> +struct slist; + +struct slist_node; + /* * Static list initializer. */ |