diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-06 20:47:31 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-06 20:47:31 +0000 |
commit | 36278b957630afbe603c632fe21792ed497df149 (patch) | |
tree | 5c269e8748077ea0724b10b52b47f2d147e49130 | |
parent | 54851d3c6523b544c127fa0420e4b58fb1f046f4 (diff) | |
download | busybox-w32-36278b957630afbe603c632fe21792ed497df149.tar.gz busybox-w32-36278b957630afbe603c632fe21792ed497df149.tar.bz2 busybox-w32-36278b957630afbe603c632fe21792ed497df149.zip |
Fix func prototype
-rw-r--r-- | lash.c | 1 | ||||
-rw-r--r-- | sh.c | 1 | ||||
-rw-r--r-- | shell/lash.c | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -153,6 +153,7 @@ static int run_command_predicate(char *cmd); | |||
153 | /* function prototypes for shell stuff */ | 153 | /* function prototypes for shell stuff */ |
154 | static void mark_open(int fd); | 154 | static void mark_open(int fd); |
155 | static void mark_closed(int fd); | 155 | static void mark_closed(int fd); |
156 | static void close_all(void); | ||
156 | static void checkjobs(struct jobset *job_list); | 157 | static void checkjobs(struct jobset *job_list); |
157 | static int get_command(FILE * source, char *command); | 158 | static int get_command(FILE * source, char *command); |
158 | static int parse_command(char **command_ptr, struct job *job, int *inbg); | 159 | static int parse_command(char **command_ptr, struct job *job, int *inbg); |
@@ -153,6 +153,7 @@ static int run_command_predicate(char *cmd); | |||
153 | /* function prototypes for shell stuff */ | 153 | /* function prototypes for shell stuff */ |
154 | static void mark_open(int fd); | 154 | static void mark_open(int fd); |
155 | static void mark_closed(int fd); | 155 | static void mark_closed(int fd); |
156 | static void close_all(void); | ||
156 | static void checkjobs(struct jobset *job_list); | 157 | static void checkjobs(struct jobset *job_list); |
157 | static int get_command(FILE * source, char *command); | 158 | static int get_command(FILE * source, char *command); |
158 | static int parse_command(char **command_ptr, struct job *job, int *inbg); | 159 | static int parse_command(char **command_ptr, struct job *job, int *inbg); |
diff --git a/shell/lash.c b/shell/lash.c index 11016a009..b7c5ec525 100644 --- a/shell/lash.c +++ b/shell/lash.c | |||
@@ -153,6 +153,7 @@ static int run_command_predicate(char *cmd); | |||
153 | /* function prototypes for shell stuff */ | 153 | /* function prototypes for shell stuff */ |
154 | static void mark_open(int fd); | 154 | static void mark_open(int fd); |
155 | static void mark_closed(int fd); | 155 | static void mark_closed(int fd); |
156 | static void close_all(void); | ||
156 | static void checkjobs(struct jobset *job_list); | 157 | static void checkjobs(struct jobset *job_list); |
157 | static int get_command(FILE * source, char *command); | 158 | static int get_command(FILE * source, char *command); |
158 | static int parse_command(char **command_ptr, struct job *job, int *inbg); | 159 | static int parse_command(char **command_ptr, struct job *job, int *inbg); |