summaryrefslogtreecommitdiff
path: root/libs/pbd3/pbd/forkexec.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd3/pbd/forkexec.h')
-rw-r--r--libs/pbd3/pbd/forkexec.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/libs/pbd3/pbd/forkexec.h b/libs/pbd3/pbd/forkexec.h
new file mode 100644
index 0000000000..2af3711390
--- /dev/null
+++ b/libs/pbd3/pbd/forkexec.h
@@ -0,0 +1,9 @@
+#ifndef __forkexec_h__
+#define __forkexec_h__
+
+#include <unistd.h>
+
+pid_t forkexec(char **argv, char **envp, int outpipe[2], int inpipe[2]);
+pid_t forkexec_cmd(char *cmd, char **envp, int outpipe[2], int inpipe[2]);
+
+#endif // __forkexec_h__