From: David Woodhouse Date: Thu, 27 Apr 2006 05:57:23 +0000 (+0100) Subject: Add standard include guard to asm-generic/signal and use compiler.h X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=ad1588798620901c12ba86c71865150a4eb727bf;p=deliverable%2Flinux.git Add standard include guard to asm-generic/signal and use compiler.h Signed-off-by: David Woodhouse --- diff --git a/include/asm-generic/signal.h b/include/asm-generic/signal.h index 9418d6e9b8cd..dae1d8720076 100644 --- a/include/asm-generic/signal.h +++ b/include/asm-generic/signal.h @@ -1,3 +1,8 @@ +#ifndef __ASM_GENERIC_SIGNAL_H +#define __ASM_GENERIC_SIGNAL_H + +#include + #ifndef SIG_BLOCK #define SIG_BLOCK 0 /* for blocking signals */ #endif @@ -19,3 +24,5 @@ typedef __restorefn_t __user *__sigrestore_t; #define SIG_IGN ((__force __sighandler_t)1) /* ignore signal */ #define SIG_ERR ((__force __sighandler_t)-1) /* error return from signal */ #endif + +#endif /* __ASM_GENERIC_SIGNAL_H */