diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-04-26 12:59:42 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-26 13:21:16 -0400 |
commit | 297e1b256b1090adbb4357608be3d4301e76c0ce (patch) | |
tree | 829f9286cd447de2a035c6a08f2cb31276e34d64 /arch/um | |
parent | 4a27214d7be31e122db4102166f49ec15958e8e9 (diff) |
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 f4bd349d4412..f25c29a12d00 100644 --- a/arch/um/os-Linux/helper.c +++ b/arch/um/os-Linux/helper.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include "os.h" | 14 | #include "os.h" |
15 | #include "um_malloc.h" | 15 | #include "um_malloc.h" |
16 | #include "user.h" | 16 | #include "user.h" |
17 | #include <linux/limits.h> | ||
17 | 18 | ||
18 | struct helper_data { | 19 | struct helper_data { |
19 | void (*pre_exec)(void*); | 20 | void (*pre_exec)(void*); |