d09f6b3016
git-svn-id: svn://localhost/trunk/ardour2@4 d708f5d6-7413-0410-9779-e7cbd77b26cf
10 lines
242 B
C
10 lines
242 B
C
#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__
|