diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/zsh.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index 5d1a8b1c8..306cc82e5 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -661,8 +661,9 @@ struct eccstr { /* Defintions for job table and job control */ /********************************************/ -/* size of job table */ -#define MAXJOB 50 +#ifdef NEED_LINUX_TASKS_H +#include <linux/tasks.h> +#endif /* entry in the job table */ |