From: Ingo Molnar Date: Sat, 26 Apr 2008 16:59:42 +0000 (+0200) Subject: uml: fix build error X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=297e1b256b1090adbb4357608be3d4301e76c0ce;p=linux-beck.git uml: fix build error fix: arch/um/os-Linux/helper.c: In function 'run_helper': arch/um/os-Linux/helper.c:73: error: 'PATH_MAX' undeclared (first use in this function) Signed-off-by: Ingo Molnar --- diff --git a/arch/um/os-Linux/helper.c b/arch/um/os-Linux/helper.c index f4bd349d4412..f25c29a12d00 100644 --- a/arch/um/os-Linux/helper.c +++ b/arch/um/os-Linux/helper.c @@ -14,6 +14,7 @@ #include "os.h" #include "um_malloc.h" #include "user.h" +#include struct helper_data { void (*pre_exec)(void*);