diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index afb9b6a..dcf7705 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -85,7 +85,7 @@ #ifdef CONFIG_ASH_JOB_CONTROL #define JOBS 1 #else -#undef JOBS +#define JOBS 0 #endif #if JOBS || defined(CONFIG_ASH_READ_NCHARS) @@ -6647,7 +6647,7 @@ usage: } #endif /* JOBS */ -#if defined(JOBS) || DEBUG +#if JOBS || DEBUG static int jobno(const struct job *jp) { |