aboutsummaryrefslogtreecommitdiff
path: root/shell/lash_unused.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/lash_unused.c')
-rw-r--r--shell/lash_unused.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/lash_unused.c b/shell/lash_unused.c
index d57f584b2..59199ded4 100644
--- a/shell/lash_unused.c
+++ b/shell/lash_unused.c
@@ -116,11 +116,11 @@ static int builtin_read(struct child_prog *cmd);
116/* function prototypes for shell stuff */ 116/* function prototypes for shell stuff */
117static void checkjobs(struct jobset *job_list); 117static void checkjobs(struct jobset *job_list);
118static void remove_job(struct jobset *j_list, struct job *job); 118static void remove_job(struct jobset *j_list, struct job *job);
119static int get_command_bufsiz(FILE * source, char *command); 119static int get_command_bufsiz(FILE *source, char *command);
120static int parse_command(char **command_ptr, struct job *job, int *inbg); 120static int parse_command(char **command_ptr, struct job *job, int *inbg);
121static int run_command(struct job *newjob, int inbg, int outpipe[2]); 121static int run_command(struct job *newjob, int inbg, int outpipe[2]);
122static int pseudo_exec(struct child_prog *cmd) ATTRIBUTE_NORETURN; 122static int pseudo_exec(struct child_prog *cmd) ATTRIBUTE_NORETURN;
123static int busy_loop(FILE * input); 123static int busy_loop(FILE *input);
124 124
125 125
126/* Table of built-in functions (these are non-forking builtins, meaning they 126/* Table of built-in functions (these are non-forking builtins, meaning they
@@ -643,7 +643,7 @@ static inline const char* setup_prompt_string(void)
643static line_input_t *line_input_state; 643static line_input_t *line_input_state;
644#endif 644#endif
645 645
646static int get_command_bufsiz(FILE * source, char *command) 646static int get_command_bufsiz(FILE *source, char *command)
647{ 647{
648 const char *prompt_str; 648 const char *prompt_str;
649 649
@@ -1326,7 +1326,7 @@ static int run_command(struct job *newjob, int inbg, int outpipe[2])
1326 return 0; 1326 return 0;
1327} 1327}
1328 1328
1329static int busy_loop(FILE * input) 1329static int busy_loop(FILE *input)
1330{ 1330{
1331 char *command; 1331 char *command;
1332 char *next_command = NULL; 1332 char *next_command = NULL;