aboutsummaryrefslogtreecommitdiff
path: root/sh.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-11-30 00:27:06 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-11-30 00:27:06 +0000
commit263525ca558fefb20217c20fb26469a1e5f30ae9 (patch)
tree69a9da9b595aef4aa44cb0dd90723f6d8364ddc1 /sh.c
parent030aad492202b3b9c8204a9963960b7b5081b7d0 (diff)
downloadbusybox-w32-263525ca558fefb20217c20fb26469a1e5f30ae9.tar.gz
busybox-w32-263525ca558fefb20217c20fb26469a1e5f30ae9.tar.bz2
busybox-w32-263525ca558fefb20217c20fb26469a1e5f30ae9.zip
Patch from Larry Doolittle (with minor touchups from me so everything compiles
and works) to use the applet definitions in applets.h to autogenerate the applet function and usage prototypes. git-svn-id: svn://busybox.net/trunk/busybox@1354 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'sh.c')
-rw-r--r--sh.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sh.c b/sh.c
index 87d4fbfbd..eba60b3b7 100644
--- a/sh.c
+++ b/sh.c
@@ -52,6 +52,7 @@
52#define MAX_LINE 256 /* size of input buffer for `read' builtin */ 52#define MAX_LINE 256 /* size of input buffer for `read' builtin */
53#define MAX_READ 128 /* size of input buffer for `read' builtin */ 53#define MAX_READ 128 /* size of input buffer for `read' builtin */
54#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" 54#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
55extern size_t NUM_APPLETS;
55 56
56 57
57enum redirectionType { REDIRECT_INPUT, REDIRECT_OVERWRITE, 58enum redirectionType { REDIRECT_INPUT, REDIRECT_OVERWRITE,