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

u32 spawn(char *path)
{
	return syscall_spawn(path);
}