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

u32 exec(char *path)
{
	return syscall_exec(path);
}