aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/syscall/actions/sys_exec.c')
-rw-r--r--src/kernel/syscall/actions/sys_exec.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/kernel/syscall/actions/sys_exec.c b/src/kernel/syscall/actions/sys_exec.c
new file mode 100644
index 0000000..dc1e9c6
--- /dev/null
+++ b/src/kernel/syscall/actions/sys_exec.c
@@ -0,0 +1,7 @@
+#include <stdint.h>
+#include <kernel/tasks/process.h>
+
+uint32_t sys_exec(char *path)
+{
+ return uexec(path);
+}