diff options
author | Richard Braun <rbraun@sceen.net> | 2017-09-02 10:02:16 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-09-02 15:29:41 +0200 |
commit | aa71571e6fde1f6a3a39f8ea48bcd940bde6fd28 (patch) | |
tree | e8c9040400d76cecfb838ac9cd84d6b18a14349a /kern/hlist.h | |
parent | 1858793bd9a92aa1021fbc609557cf1c9c2c7270 (diff) |
kern/{h,s}list: add type declarations to public headers
This change merely documents the types as part of the public interface
of the respective modules.
Diffstat (limited to 'kern/hlist.h')
-rw-r--r-- | kern/hlist.h | 4 |
1 files changed, 4 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. */ |