diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-11-30 00:27:06 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-11-30 00:27:06 +0000 |
commit | 263525ca558fefb20217c20fb26469a1e5f30ae9 (patch) | |
tree | 69a9da9b595aef4aa44cb0dd90723f6d8364ddc1 /sh.c | |
parent | 030aad492202b3b9c8204a9963960b7b5081b7d0 (diff) | |
download | busybox-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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" |
55 | extern size_t NUM_APPLETS; | ||
55 | 56 | ||
56 | 57 | ||
57 | enum redirectionType { REDIRECT_INPUT, REDIRECT_OVERWRITE, | 58 | enum redirectionType { REDIRECT_INPUT, REDIRECT_OVERWRITE, |