aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-10-08 04:19:14 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-10-08 04:19:14 +0200
commit57ce977a9700e2f78c92b15805ac6ca430e21f14 (patch)
treed896ad8d6391c20f3ca9fd7e399a14de721050d9 /shell
parentd5fddcd57f4e692dd100121bb66adea8129fdbd6 (diff)
downloadbusybox-57ce977a9700e2f78c92b15805ac6ca430e21f14.tar.gz
ash: compile breakage fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 2e7228d3c..54af39ada 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -3272,9 +3272,6 @@ struct job {
};
static struct job *makejob(/*union node *,*/ int);
-#if !JOBS
-#define forkshell(job, node, mode) forkshell(job, mode)
-#endif
static int forkshell(struct job *, union node *, int);
static int waitforjob(struct job *);
@@ -4541,9 +4538,6 @@ clear_traps(void)
static void closescript(void);
/* Called after fork(), in child */
-#if !JOBS
-# define forkchild(jp, n, mode) forkchild(jp, mode)
-#endif
static NOINLINE void
forkchild(struct job *jp, union node *n, int mode)
{