Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-10-08 05:18:51 +0400
committerDenys Vlasenko <vda.linux@googlemail.com>2009-10-08 05:18:51 +0400
commit8cbc300d083001bccac4f33bf61b9dc97f29cb04 (patch)
tree6a9b4066dcfb1ff876c729dee00e81e1173f7905
parent6f01ccffc2bed8caa4cb31023f35061eb683a9c3 (diff)
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 {
};
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)
{