Sun May 12 19:19:43 1996 Aaron Digulla <digulla@fh-konstanz.de>

* job.h: No envp on Amiga
This commit is contained in:
Roland McGrath 1996-05-13 18:40:22 +00:00
parent c8484a6170
commit b4dcc6f6bd

4
job.h
View file

@ -58,7 +58,11 @@ extern int child_execute_job PARAMS ((char *argv, struct child *child));
#else
extern void child_execute_job PARAMS ((int stdin_fd, int stdout_fd, char **argv, char **envp));
#endif
#ifdef _AMIGA
extern void exec_command PARAMS ((char **argv));
#else
extern void exec_command PARAMS ((char **argv, char **envp));
#endif
extern unsigned int job_slots_used;