Fix func prototype

This commit is contained in:
Eric Andersen 2001-03-06 20:47:31 +00:00
parent 54851d3c65
commit 36278b9576
3 changed files with 3 additions and 0 deletions

1
lash.c
View File

@ -153,6 +153,7 @@ static int run_command_predicate(char *cmd);
/* function prototypes for shell stuff */
static void mark_open(int fd);
static void mark_closed(int fd);
static void close_all(void);
static void checkjobs(struct jobset *job_list);
static int get_command(FILE * source, char *command);
static int parse_command(char **command_ptr, struct job *job, int *inbg);

1
sh.c
View File

@ -153,6 +153,7 @@ static int run_command_predicate(char *cmd);
/* function prototypes for shell stuff */
static void mark_open(int fd);
static void mark_closed(int fd);
static void close_all(void);
static void checkjobs(struct jobset *job_list);
static int get_command(FILE * source, char *command);
static int parse_command(char **command_ptr, struct job *job, int *inbg);

View File

@ -153,6 +153,7 @@ static int run_command_predicate(char *cmd);
/* function prototypes for shell stuff */
static void mark_open(int fd);
static void mark_closed(int fd);
static void close_all(void);
static void checkjobs(struct jobset *job_list);
static int get_command(FILE * source, char *command);
static int parse_command(char **command_ptr, struct job *job, int *inbg);