aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 952961373..a9529f86b 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -3272,9 +3272,6 @@ struct job {
3272}; 3272};
3273 3273
3274static struct job *makejob(/*union node *,*/ int); 3274static struct job *makejob(/*union node *,*/ int);
3275#if !JOBS
3276#define forkshell(job, node, mode) forkshell(job, mode)
3277#endif
3278static int forkshell(struct job *, union node *, int); 3275static int forkshell(struct job *, union node *, int);
3279static int waitforjob(struct job *); 3276static int waitforjob(struct job *);
3280 3277
@@ -4541,9 +4538,6 @@ clear_traps(void)
4541static void closescript(void); 4538static void closescript(void);
4542 4539
4543/* Called after fork(), in child */ 4540/* Called after fork(), in child */
4544#if !JOBS
4545# define forkchild(jp, n, mode) forkchild(jp, mode)
4546#endif
4547static NOINLINE void 4541static NOINLINE void
4548forkchild(struct job *jp, union node *n, int mode) 4542forkchild(struct job *jp, union node *n, int mode)
4549{ 4543{