diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-04-26 18:59:42 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-26 19:21:16 +0200 |
commit | 297e1b256b1090adbb4357608be3d4301e76c0ce (patch) | |
tree | 829f9286cd447de2a035c6a08f2cb31276e34d64 /arch/um | |
parent | 4a27214d7be31e122db4102166f49ec15958e8e9 (diff) | |
download | op-kernel-dev-297e1b256b1090adbb4357608be3d4301e76c0ce.zip op-kernel-dev-297e1b256b1090adbb4357608be3d4301e76c0ce.tar.gz |
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 <mingo@elte.hu>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/os-Linux/helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/um/os-Linux/helper.c b/arch/um/os-Linux/helper.c index f4bd349..f25c29a 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 <linux/limits.h> struct helper_data { void (*pre_exec)(void*); |