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

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