diff options
author | Christian Göttsche <cgzones@googlemail.com> | 2022-05-02 16:15:20 +0200 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2022-05-03 14:11:13 -0400 |
commit | 4ad37de496425b1d2bc4cd923cf94f3e582d5dea (patch) | |
tree | e357c15bb2e70c41af96f82e1ff10b1f1bdd9647 /security/selinux/include/netnode.h | |
parent | 1d4e8036cb2b301842797d447164464896824c58 (diff) | |
download | linux-4ad37de496425b1d2bc4cd923cf94f3e582d5dea.tar.gz linux-4ad37de496425b1d2bc4cd923cf94f3e582d5dea.tar.bz2 linux-4ad37de496425b1d2bc4cd923cf94f3e582d5dea.zip |
selinux: include necessary headers in headers
Include header files required for struct or typedef declarations in
header files. This is for example helpful when working with an IDE, which
needs to resolve those symbols.
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/include/netnode.h')
-rw-r--r-- | security/selinux/include/netnode.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/security/selinux/include/netnode.h b/security/selinux/include/netnode.h index e3f784a85840..9b8b655a8cd3 100644 --- a/security/selinux/include/netnode.h +++ b/security/selinux/include/netnode.h @@ -17,6 +17,8 @@ #ifndef _SELINUX_NETNODE_H #define _SELINUX_NETNODE_H +#include <linux/types.h> + void sel_netnode_flush(void); int sel_netnode_sid(void *addr, u16 family, u32 *sid); |