Linux Audio

Check our new training course

Loading...
1
2
3
4
5
6
7
8
#include <unistd.h>
#include "syscall.h"

pid_t vfork(void)
{
	/* vfork syscall cannot be made from C code */
	return syscall(SYS_fork);
}