summaryrefslogtreecommitdiff
path: root/arch/x86/include/asm/audit.h
diff options
context:
space:
mode:
authorBenjamin Thiel <b.thiel@posteo.de>2020-05-16 14:38:16 +0200
committerBorislav Petkov <bp@suse.de>2020-05-19 18:03:07 +0200
commit0e5e3d4461a22d739fb2284a6e313fb6cecf2871 (patch)
tree7d7484aa380b6e083933c449e534677f19b5e29c /arch/x86/include/asm/audit.h
parent6255c161a08564e4f3995db31f3d64a5fd24738b (diff)
x86/audit: Fix a -Wmissing-prototypes warning for ia32_classify_syscall()
Lift the prototype of ia32_classify_syscall() into its own header. Signed-off-by: Benjamin Thiel <b.thiel@posteo.de> Signed-off-by: Borislav Petkov <bp@suse.de> Link: https://lkml.kernel.org/r/20200516123816.2680-1-b.thiel@posteo.de
Diffstat (limited to 'arch/x86/include/asm/audit.h')
-rw-r--r--arch/x86/include/asm/audit.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/include/asm/audit.h b/arch/x86/include/asm/audit.h
new file mode 100644
index 000000000000..36aec57ea7a3
--- /dev/null
+++ b/arch/x86/include/asm/audit.h
@@ -0,0 +1,7 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _ASM_X86_AUDIT_H
+#define _ASM_X86_AUDIT_H
+
+int ia32_classify_syscall(unsigned int syscall);
+
+#endif /* _ASM_X86_AUDIT_H */