diff options
author | Christian Göttsche <cgzones@googlemail.com> | 2022-05-02 17:15:20 +0300 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2022-05-03 21:11:13 +0300 |
commit | 4ad37de496425b1d2bc4cd923cf94f3e582d5dea (patch) | |
tree | e357c15bb2e70c41af96f82e1ff10b1f1bdd9647 /security/selinux/include/avc_ss.h | |
parent | 1d4e8036cb2b301842797d447164464896824c58 (diff) | |
download | linux-4ad37de496425b1d2bc4cd923cf94f3e582d5dea.tar.xz |
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/avc_ss.h')
-rw-r--r-- | security/selinux/include/avc_ss.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/include/avc_ss.h b/security/selinux/include/avc_ss.h index 88c384c5c09e..66a87559b788 100644 --- a/security/selinux/include/avc_ss.h +++ b/security/selinux/include/avc_ss.h @@ -7,7 +7,7 @@ #ifndef _SELINUX_AVC_SS_H_ #define _SELINUX_AVC_SS_H_ -#include "flask.h" +#include <linux/types.h> struct selinux_avc; int avc_ss_reset(struct selinux_avc *avc, u32 seqno); |