summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/forkexec.h
blob: 2af3711390f4529f2ab2b3a3fadefde59ae91688 (plain)
1
2
3
4
5
6
7
8
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__