diff options
Diffstat (limited to 'libc/sysdeps/linux/e1/vfork.c')
-rw-r--r-- | libc/sysdeps/linux/e1/vfork.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/e1/vfork.c b/libc/sysdeps/linux/e1/vfork.c new file mode 100644 index 000000000..56acfb1bc --- /dev/null +++ b/libc/sysdeps/linux/e1/vfork.c @@ -0,0 +1,7 @@ +#include <sys/types.h> +#include <sys/syscall.h> +#include <sys/errno.h> + +#define __NR___libc_vfork __NR_vfork +inline _syscall0(pid_t, __libc_vfork); +inline _syscall0(pid_t, vfork); |