projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f01ccf
)
ash: fix compile breakage
1_15_2
author
Denys Vlasenko
<vda.linux@googlemail.com>
Thu, 8 Oct 2009 01:18:51 +0000
(
03:18
+0200)
committer
Denys Vlasenko
<vda.linux@googlemail.com>
Thu, 8 Oct 2009 01:18:51 +0000
(
03:18
+0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash.c
patch
|
blob
|
history
diff --git
a/shell/ash.c
b/shell/ash.c
index 9529613730092f1db5cfb2561f1738149b2a4d33..a9529f86b0e2e275d062b0ef0cd82f5a1f5da5fe 100644
(file)
--- 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)
{