mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
9 lines
242 B
C
9 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__
|