diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 04:19:14 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 04:19:14 +0200 |
commit | 57ce977a9700e2f78c92b15805ac6ca430e21f14 (patch) | |
tree | d896ad8d6391c20f3ca9fd7e399a14de721050d9 /shell/ash.c | |
parent | d5fddcd57f4e692dd100121bb66adea8129fdbd6 (diff) | |
download | busybox-w32-57ce977a9700e2f78c92b15805ac6ca430e21f14.tar.gz busybox-w32-57ce977a9700e2f78c92b15805ac6ca430e21f14.tar.bz2 busybox-w32-57ce977a9700e2f78c92b15805ac6ca430e21f14.zip |
ash: compile breakage fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 6 |
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 { | |||
3272 | }; | 3272 | }; |
3273 | 3273 | ||
3274 | static struct job *makejob(/*union node *,*/ int); | 3274 | static struct job *makejob(/*union node *,*/ int); |
3275 | #if !JOBS | ||
3276 | #define forkshell(job, node, mode) forkshell(job, mode) | ||
3277 | #endif | ||
3278 | static int forkshell(struct job *, union node *, int); | 3275 | static int forkshell(struct job *, union node *, int); |
3279 | static int waitforjob(struct job *); | 3276 | static int waitforjob(struct job *); |
3280 | 3277 | ||
@@ -4541,9 +4538,6 @@ clear_traps(void) | |||
4541 | static void closescript(void); | 4538 | static 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 | ||
4547 | static NOINLINE void | 4541 | static NOINLINE void |
4548 | forkchild(struct job *jp, union node *n, int mode) | 4542 | forkchild(struct job *jp, union node *n, int mode) |
4549 | { | 4543 | { |