aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/unistd/fork.c
blob: 6ca054aad8ce19213cf514fc8e58fb9e739130d7 (plain) (blame)
1
2
3
4
5
6
7
#include <stdint.h>
#include <syscall.h>

u32 fork()
{
	return syscall_fork();
}