summaryrefslogtreecommitdiff
path: root/job.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1996-05-13 18:40:22 +0000
committerRoland McGrath <roland@redhat.com>1996-05-13 18:40:22 +0000
commitb4dcc6f6bddcd050404effffd3b753e22930358e (patch)
treeb50eb2b5e6b7b21913529ddf2a3100a376a14996 /job.h
parentc8484a6170338873143f21b2051f64aed6280a49 (diff)
downloadgunmake-b4dcc6f6bddcd050404effffd3b753e22930358e.tar.gz
Sun May 12 19:19:43 1996 Aaron Digulla <digulla@fh-konstanz.de>
* job.h: No envp on Amiga
Diffstat (limited to 'job.h')
-rw-r--r--job.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/job.h b/job.h
index 82814aa..abd7167 100644
--- a/job.h
+++ b/job.h
@@ -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;