From: Hiroshi Shimamoto Date: Thu, 18 Dec 2008 17:18:35 +0000 (-0800) Subject: x86: sigframe.h: add guard macro X-Git-Tag: Ubuntu-5.2.0-15.16~31747^2~4^26~4 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=5c2628e8b4f670d0954053444289e2b018be957a;p=mirror_ubuntu-eoan-kernel.git x86: sigframe.h: add guard macro Impact: cleanup Add missing guard macro _ASM_X86_SIGFRAME_H. Signed-off-by: Hiroshi Shimamoto Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/include/asm/sigframe.h b/arch/x86/include/asm/sigframe.h index 491a0878c3aa..3bd0f4276000 100644 --- a/arch/x86/include/asm/sigframe.h +++ b/arch/x86/include/asm/sigframe.h @@ -1,3 +1,6 @@ +#ifndef _ASM_X86_SIGFRAME_H +#define _ASM_X86_SIGFRAME_H + #ifdef CONFIG_X86_32 #define sigframe_ia32 sigframe #define rt_sigframe_ia32 rt_sigframe @@ -59,3 +62,5 @@ struct rt_sigframe { /* fp state follows here */ }; #endif /* CONFIG_X86_64 */ + +#endif /* _ASM_X86_SIGFRAME_H */