aboutsummaryrefslogtreecommitdiff
path: root/sh.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-06 20:47:31 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-06 20:47:31 +0000
commit0d37ae10faea9e8c62a0660d4d282aad8606b478 (patch)
tree5c269e8748077ea0724b10b52b47f2d147e49130 /sh.c
parentbfff954cf0f7ce82d6e87a38b167c9b508abe616 (diff)
downloadbusybox-w32-0d37ae10faea9e8c62a0660d4d282aad8606b478.tar.gz
busybox-w32-0d37ae10faea9e8c62a0660d4d282aad8606b478.tar.bz2
busybox-w32-0d37ae10faea9e8c62a0660d4d282aad8606b478.zip
Fix func prototype
git-svn-id: svn://busybox.net/trunk/busybox@1986 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 11016a009..b7c5ec525 100644
--- a/sh.c
+++ b/sh.c
@@ -153,6 +153,7 @@ static int run_command_predicate(char *cmd);
153/* function prototypes for shell stuff */ 153/* function prototypes for shell stuff */
154static void mark_open(int fd); 154static void mark_open(int fd);
155static void mark_closed(int fd); 155static void mark_closed(int fd);
156static void close_all(void);
156static void checkjobs(struct jobset *job_list); 157static void checkjobs(struct jobset *job_list);
157static int get_command(FILE * source, char *command); 158static int get_command(FILE * source, char *command);
158static int parse_command(char **command_ptr, struct job *job, int *inbg); 159static int parse_command(char **command_ptr, struct job *job, int *inbg);