From: Ralf Baechle Date: Sat, 18 Apr 2009 09:30:56 +0000 (+0200) Subject: needs to include . X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=42a17ad2762f465d291c3bc0b6ed2b3738f65481;p=linux-beck.git needs to include . uses EINVAL so should include . This fixes a build error on 64-bit MIPS if CONFIG_SECCOMP is disabled. Signed-off-by: Ralf Baechle Signed-off-by: Linus Torvalds --- diff --git a/include/linux/seccomp.h b/include/linux/seccomp.h index 262a8dccfa81..167c33361d9c 100644 --- a/include/linux/seccomp.h +++ b/include/linux/seccomp.h @@ -21,6 +21,8 @@ extern long prctl_set_seccomp(unsigned long); #else /* CONFIG_SECCOMP */ +#include + typedef struct { } seccomp_t; #define secure_computing(x) do { } while (0)