diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 03:18:51 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 03:18:51 +0200 |
commit | 8cbc300d083001bccac4f33bf61b9dc97f29cb04 (patch) | |
tree | 6a9b4066dcfb1ff876c729dee00e81e1173f7905 | |
parent | 6f01ccffc2bed8caa4cb31023f35061eb683a9c3 (diff) | |
download | busybox-w32-1_15_2.tar.gz busybox-w32-1_15_2.tar.bz2 busybox-w32-1_15_2.zip |
ash: fix compile breakage1_15_2
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 952961373..a9529f86b 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 | { |