summaryrefslogtreecommitdiff
path: root/src/unistd/fork.c
blob: 3da5c822d7873c3f7882ad1f249782464eb0ebb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "errno.h"
#include "nonstd/syscall.h"

pid_t fork(void)
{
	SC0(pid_t);
}
/*
POSIX(1)
*/