aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_spawn.c
blob: e3fa7908e5392af266f7c6e7b1e18aea9131f5a3 (plain) (blame)
1
2
3
4
5
6
7
#include <stdint.h>
#include <tasks/process.h>

u32 sys_spawn(char *path)
{
	return uspawn(path);
}