aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-10-08 03:18:51 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-10-08 03:18:51 +0200
commit8cbc300d083001bccac4f33bf61b9dc97f29cb04 (patch)
tree6a9b4066dcfb1ff876c729dee00e81e1173f7905
parent6f01ccffc2bed8caa4cb31023f35061eb683a9c3 (diff)
downloadbusybox-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.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{