summaryrefslogtreecommitdiff
path: root/userland/libc/libc.c
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/libc.c')
-rw-r--r--userland/libc/libc.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/userland/libc/libc.c b/userland/libc/libc.c
index 52a8f3f..f2968b5 100644
--- a/userland/libc/libc.c
+++ b/userland/libc/libc.c
@@ -179,11 +179,6 @@ int close(int fd) {
return syscall(SYS_CLOSE, (u32)fd, 0, 0, 0, 0);
}
-int execv(char *path, char **argv) {
- struct SYS_EXEC_PARAMS args = {.path = path, .argv = argv};
- return syscall(SYS_EXEC, (u32)&args, 0, 0, 0, 0);
-}
-
int s_syscall(int sys);
int wait(int *stat_loc) {