summaryrefslogtreecommitdiff
path: root/src/unistd/vfork.c
blob: f0acd5d51bead2ea9d6cc950f663cca035619b34 (plain)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h>

pid_t vfork(void)
{
	return fork();
}

/*
XOPEN(400,700)
*/