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

u32 sys_exec(char *path)
{
	return uexec(path);
}